From aee263c6b09a53c0f1e4269a2e134451d602cec7 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Thu, 26 Jun 2014 20:49:27 -0400 Subject: [PATCH] Fix windows run instructions Thank you, @stormbrew! --- src/doc/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 92e054b55a19..446753a1c9cc 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -160,7 +160,7 @@ Save the file, and then type this into your terminal window: ```{bash} $ rustc hello_world.rs -$ ./hello_world +$ ./hello_world # just 'hello_world' on Windows Hello, world ```