Skip to content

Commit 6642556

Browse files
committed
Fixed delete command on Windows
1 parent 2e07996 commit 6642556

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)