about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/doc/guide.md12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md
index 56a48d56302..42b929e3995 100644
--- a/src/doc/guide.md
+++ b/src/doc/guide.md
@@ -2755,18 +2755,8 @@ mod hello {
 This will work:
 
 ```{notrust,ignore}
-$ cargo build
-   Compiling modules v0.0.1 (file:///home/you/projects/modules)
-$
-```
-
-Before we move on, let me show you one more Cargo command: `run`. `cargo run`
-is kind of like `cargo build`, but it also then runs the produced exectuable.
-Try it out:
-
-```{notrust,ignore}
 $ cargo run
-   Compiling modules v0.0.1 (file:///home/steve/tmp/modules)
+   Compiling modules v0.0.1 (file:///home/you/projects/modules)
      Running `target/modules`
 Hello, world!
 $