From 66425568b368412b0e787289f330268c2e580983 Mon Sep 17 00:00:00 2001 From: Igor Shuvalov Date: Fri, 30 Oct 2015 09:25:55 +0300 Subject: [PATCH] Fixed delete command on Windows --- src/doc/trpl/hello-cargo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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