diff options
| author | bors <bors@rust-lang.org> | 2015-10-30 16:18:11 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-10-30 16:18:11 +0000 |
| commit | 2aa9f7d3916dcff36a5b8b4978981c056ceb8398 (patch) | |
| tree | f76432a5a37467d890ceb3a00e35b63e3e6dcace | |
| parent | 914c4dbc2a1037e63625b0bf846c6b550d0918c7 (diff) | |
| parent | 66425568b368412b0e787289f330268c2e580983 (diff) | |
Auto merge of #29468 - ronindev:patch-1, r=alexcrichton
There are no `rm` commands on windows. But windows has `del`
| -rw-r--r-- | src/doc/trpl/hello-cargo.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/hello-cargo.md b/src/doc/trpl/hello-cargo.md index b155a4287e8..97bc4575f81 100644 --- a/src/doc/trpl/hello-cargo.md +++ b/src/doc/trpl/hello-cargo.md @@ -31,7 +31,7 @@ old executable (`main.exe` on Windows, `main` everywhere else). Let's do that pa ```bash $ mkdir src $ mv main.rs src/main.rs -$ rm main # or 'rm main.exe' on Windows +$ rm main # or 'del main.exe' on Windows ``` > Note: since we're creating an executable, we retain `main.rs` as the source |
