Skip to content

Commit 2aa9f7d

Browse files
committed
Auto merge of #29468 - ronindev:patch-1, r=alexcrichton
There are no `rm` commands on windows. But windows has `del`
2 parents 914c4db + 6642556 commit 2aa9f7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/hello-cargo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ old executable (`main.exe` on Windows, `main` everywhere else). Let's do that pa
3131
```bash
3232
$ mkdir src
3333
$ mv main.rs src/main.rs
34-
$ rm main # or 'rm main.exe' on Windows
34+
$ rm main # or 'del main.exe' on Windows
3535
```
3636

3737
> Note: since we're creating an executable, we retain `main.rs` as the source

0 commit comments

Comments
 (0)