about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-04-08 01:19:38 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-04-08 01:19:38 +0530
commitfe2cff74f4f885e914c03a72bf2d69c209aad6e7 (patch)
treeb49c3a376cbbfa4f4dc5beea2e589ef4732b576a
parent2b34643638d627a371bd1073fc810f8d4acb170f (diff)
parent6eea4266ec2bb9d071f58ab0417ce45cf69befd6 (diff)
downloadrust-fe2cff74f4f885e914c03a72bf2d69c209aad6e7.tar.gz
rust-fe2cff74f4f885e914c03a72bf2d69c209aad6e7.zip
Rollup merge of #24148 - xfq:patch-2, r=steveklabnik
People use programming language *implementations* like Ruby MRI, CPython, and SpiderMonkey for executing programs.
-rw-r--r--src/doc/trpl/hello-world.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/doc/trpl/hello-world.md b/src/doc/trpl/hello-world.md
index a3b5d655fa7..f726f8627c9 100644
--- a/src/doc/trpl/hello-world.md
+++ b/src/doc/trpl/hello-world.md
@@ -149,10 +149,10 @@ If you come from a dynamically typed 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 give someone a `.rb` or `.py` or `.js` file, they need to have
-Ruby/Python/JavaScript installed, but you just need one command to both compile
-and run your program. Everything is a tradeoff in language design, and Rust has
-made its choice.
+If you give someone a `.rb` or `.py` or `.js` file, they need to have a
+Ruby/Python/JavaScript implementation installed, but you just need one command
+to both compile and run your program. Everything is a tradeoff in language design,
+and Rust has made its choice.
 
 Congratulations! You have officially written a Rust program. That makes you a
 Rust programmer! Welcome.