about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEduardo Bautista <me@eduardobautista.com>2014-08-19 00:19:22 -0700
committerEduardo Bautista <me@eduardobautista.com>2014-08-19 12:07:25 -0700
commit48c0f596a70bb69ab05f4e34c78db910cf962e05 (patch)
treed7831958d286be730fa7d730851e520751214b38 /src
parent6b26aaea3e01f54eea8f4c1238a6bf9ede1574aa (diff)
downloadrust-48c0f596a70bb69ab05f4e34c78db910cf962e05.tar.gz
rust-48c0f596a70bb69ab05f4e34c78db910cf962e05.zip
Remove repeated section and make file path generic
Diffstat (limited to 'src')
-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!
 $