diff options
| author | bors <bors@rust-lang.org> | 2015-01-12 00:21:30 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-01-12 00:21:30 +0000 |
| commit | 352c81bb4b951f955fb3c74480475c016e9260fc (patch) | |
| tree | eb947e14ce7156c78e19e7ffcb8f5be4d0224873 | |
| parent | f72c719b7116697122a9f8d63d2983b162241a27 (diff) | |
| parent | add92250383a3fcb5a8a74b4ac064ff06119e638 (diff) | |
| download | rust-352c81bb4b951f955fb3c74480475c016e9260fc.tar.gz rust-352c81bb4b951f955fb3c74480475c016e9260fc.zip | |
Merge pull request #20933 from gifnksm/patch-1
TRPL: `cargo build` doesn't run executables Reviewed-by: alexcrichton
| -rw-r--r-- | src/doc/trpl/crates-and-modules.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/crates-and-modules.md b/src/doc/trpl/crates-and-modules.md index 34d5c71c19f..c12090e2a61 100644 --- a/src/doc/trpl/crates-and-modules.md +++ b/src/doc/trpl/crates-and-modules.md @@ -559,7 +559,7 @@ Also, note that we `pub use`d before we declared our `mod`s. Rust requires that This will build and run: ```bash -$ cargo build +$ cargo run Compiling phrases v0.0.1 (file:///home/you/projects/phrases) Running `target/phrases` Hello in English: Hello! |
