about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAvdi Grimm <avdi@avdi.org>2015-04-13 16:23:57 -0400
committerAvdi Grimm <avdi@avdi.org>2015-04-13 16:23:57 -0400
commit810757935e38aeaabfd8359fe157e74c837221df (patch)
tree73691bd1bc90c251c49b2bc2ad7c9ee1475be781
parentab8c884b3464633fc227a465f4b5aab4c7bce27a (diff)
Wording for dynamic languages.
-rw-r--r--src/doc/trpl/hello-world.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/hello-world.md b/src/doc/trpl/hello-world.md
index fc5307a6a12..58aeebd6eb0 100644
--- a/src/doc/trpl/hello-world.md
+++ b/src/doc/trpl/hello-world.md
@@ -147,7 +147,7 @@ $ ./main  # or main.exe on Windows
 
 This prints out our `Hello, world!` text to our terminal.
 
-If you come from a dynamically evaluated language like Ruby, Python, or JavaScript,
+If you come from a dynamic language like Ruby, Python, or JavaScript,
 you may not be used to these two steps being separate. Rust is an
 ‘ahead-of-time compiled language’, which means that you can compile a program,
 give it to someone else, and they don't need to have Rust installed. If you