]> git.lizzy.rs Git - rust.git/commitdiff
doc/book/getting-started.md: Removed references to creating a new executable from...
authorStephen Mather <justsostephen@users.noreply.github.com>
Sun, 1 May 2016 18:45:38 +0000 (19:45 +0100)
committerStephen Mather <justsostephen@users.noreply.github.com>
Sun, 1 May 2016 18:45:38 +0000 (19:45 +0100)
src/doc/book/getting-started.md

index b8435438be79637c4811c8e8341966e20eeb3343..e61a76a2c37a91dc4fc5efb0a5f7c583eaf05f1b 100644 (file)
@@ -399,13 +399,13 @@ Let’s convert the Hello World program to Cargo. To Cargo-fy a project, you nee
 to do three things:
 
 1. Put your source file in the right directory.
-2. Get rid of the old executable (`main.exe` on Windows, `main` everywhere else)
-   and make a new one.
+2. Get rid of the old executable (`main.exe` on Windows, `main` everywhere
+   else).
 3. Make a Cargo configuration file.
 
 Let's get started!
 
-### Creating a new Executable and Source Directory
+### Creating a Source Directory and Removing the Old Executable
 
 First, go back to your terminal, move to your *hello_world* directory, and
 enter the following commands: