]> git.lizzy.rs Git - rust.git/commitdiff
rollup merge of #16721 : tshepang/convenience
authorAlex Crichton <alex@alexcrichton.com>
Sun, 31 Aug 2014 06:45:41 +0000 (23:45 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Sun, 31 Aug 2014 06:45:41 +0000 (23:45 -0700)
src/doc/guide.md

index 4524ab5b67b4c6226503dcc69ceef0700f01b68c..04e037065aaeadad41a4f05e489100ab169162b0 100644 (file)
@@ -2670,10 +2670,10 @@ $ cargo new modules --bin
 
 Let's double check our work by compiling:
 
-```{bash,ignore}
-$ cargo build
+```{bash,notrust}
+$ cargo run
    Compiling modules v0.0.1 (file:///home/you/projects/modules)
-$ ./target/modules
+     Running `target/modules`
 Hello, world!
 ```