about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2015-01-03 16:04:04 -0800
committerBrian Anderson <banderson@mozilla.com>2015-01-03 16:04:04 -0800
commite8078c3fedcaab143bfdc298ce4fff2ba52953d9 (patch)
treefa7c217a9714a9082e1380dd3406d19fe67d2dbf /src
parent496dc4eae7de9d14cd49511a9acfbf5f11ae6c3f (diff)
Update guide for Cargo installation
Diffstat (limited to 'src')
-rw-r--r--src/doc/guide.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md
index 55465651cfb..fd9912afb20 100644
--- a/src/doc/guide.md
+++ b/src/doc/guide.md
@@ -284,13 +284,14 @@ program doesn't have any dependencies, so we'll only be using the first part of
 its functionality. Eventually, we'll add more. Since we started off by using
 Cargo, it'll be easy to add later.
 
-Let's convert Hello World to Cargo. The first thing we need to do to begin
-using Cargo is to install Cargo. Luckily for us, the script we ran to install
-Rust includes Cargo by default. If you installed Rust some other way, you may
-want to [check the Cargo
+If you installed Rust via the official installers you will also have
+Cargo. If you installed Rust some other way, you may want to [check
+the Cargo
 README](https://github.com/rust-lang/cargo#installing-cargo-from-nightlies)
 for specific instructions about installing it.
 
+Let's convert Hello World to Cargo.
+
 To Cargo-ify our project, we need to do two things: Make a `Cargo.toml`
 configuration file, and put our source file in the right place. Let's
 do that part first: