From 15bcb2f9c6232472b391638af780b3d1a91a4584 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Thu, 26 Jun 2014 15:46:36 -0400 Subject: [PATCH] Fix missing word and some grammar Thanks @chris-morgan and @P1start! :heart: --- src/doc/guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index fabf04124ba..f33398b1a4e 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -239,8 +239,8 @@ $ dir hello_world.exe hello_world.rs ``` -There are now two files: our source code, with the `.rs`, and the executable. -We ran the executable like this: +There are now two files: our source code, with the `.rs` extension, and the +executable (`hello_world.exe` on Windows, `hello_world` everywhere else) ```{bash} $ ./hello_world # or ./hello_world.exe on Windows