From 48c0f596a70bb69ab05f4e34c78db910cf962e05 Mon Sep 17 00:00:00 2001 From: Eduardo Bautista Date: Tue, 19 Aug 2014 00:19:22 -0700 Subject: [PATCH] Remove repeated section and make file path generic --- src/doc/guide.md | 12 +----------- 1 file changed, 1 insertion(+), 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 @@ -2754,19 +2754,9 @@ 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! $