]> git.lizzy.rs Git - rust.git/commitdiff
Update hello-world.md
authorXue Fuqiao <xfq.free@gmail.com>
Tue, 7 Apr 2015 10:07:10 +0000 (18:07 +0800)
committerXue Fuqiao <xfq.free@gmail.com>
Tue, 7 Apr 2015 10:07:10 +0000 (18:07 +0800)
People use programming language *implementations* like Ruby MRI, CPython, and SpiderMonkey for executing programs.

src/doc/trpl/hello-world.md

index a3b5d655fa78bb5ee41ff5bd4e44709690cfdbe5..f726f8627c929d24cf240f4b5a4b00e6f5bed732 100644 (file)
@@ -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.