diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2016-03-28 13:48:29 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2016-03-28 13:48:29 -0400 |
| commit | 9eea1d7494277fdf8dfddf93fdfdc27130c31971 (patch) | |
| tree | dc4ac1a4a42836af6ce91de4f34937d3766f4632 /src | |
| parent | 5e02fd3727dcfec37ef4addafd490c8d9b89b705 (diff) | |
| parent | dd08804f0a3ca401a92a96a431ff96cd1b0059db (diff) | |
| download | rust-9eea1d7494277fdf8dfddf93fdfdc27130c31971.tar.gz rust-9eea1d7494277fdf8dfddf93fdfdc27130c31971.zip | |
Rollup merge of #32534 - xtian:patch-1, r=steveklabnik
Getting Started: "copy" -> "move"
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/book/getting-started.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/getting-started.md b/src/doc/book/getting-started.md index 539fdd32c6b..16c43b5e7a5 100644 --- a/src/doc/book/getting-started.md +++ b/src/doc/book/getting-started.md @@ -417,7 +417,7 @@ first. This leaves the top-level project directory (in this case, to your code. In this way, using Cargo helps you keep your projects nice and tidy. There's a place for everything, and everything is in its place. -Now, copy *main.rs* to the *src* directory, and delete the compiled file you +Now, move *main.rs* into the *src* directory, and delete the compiled file you created with `rustc`. As usual, replace `main` with `main.exe` if you're on Windows. |
