Skip to content

Commit 6eea426

Browse files
committed
Update hello-world.md
People use programming language *implementations* like Ruby MRI, CPython, and SpiderMonkey for executing programs.
1 parent c52d46e commit 6eea426

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/doc/trpl/hello-world.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,10 @@ If you come from a dynamically typed language like Ruby, Python, or JavaScript,
149149
you may not be used to these two steps being separate. Rust is an
150150
*ahead-of-time compiled language*, which means that you can compile a
151151
program, give it to someone else, and they don't need to have Rust installed.
152-
If you give someone a `.rb` or `.py` or `.js` file, they need to have
153-
Ruby/Python/JavaScript installed, but you just need one command to both compile
154-
and run your program. Everything is a tradeoff in language design, and Rust has
155-
made its choice.
152+
If you give someone a `.rb` or `.py` or `.js` file, they need to have a
153+
Ruby/Python/JavaScript implementation installed, but you just need one command
154+
to both compile and run your program. Everything is a tradeoff in language design,
155+
and Rust has made its choice.
156156

157157
Congratulations! You have officially written a Rust program. That makes you a
158158
Rust programmer! Welcome.

0 commit comments

Comments
 (0)