about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-07-10 01:36:28 +0000
committerbors <bors@rust-lang.org>2014-07-10 01:36:28 +0000
commit18520699f0c40d347fe1bde00d4f1c822f1bb28d (patch)
tree2e2663f0cbb894211310730f8055f9d71c352c1f /src
parent1b8e671d748407a377da04f389518cd981418d2c (diff)
parent6d9334d5708e29e7204c17a22cd71fb2ebe3ab78 (diff)
downloadrust-18520699f0c40d347fe1bde00d4f1c822f1bb28d.tar.gz
rust-18520699f0c40d347fe1bde00d4f1c822f1bb28d.zip
auto merge of #15554 : steveklabnik/rust/gh_15539, r=brson
This was super silly anyway.

Fixes #15539.
Diffstat (limited to 'src')
-rw-r--r--src/doc/guide.md15
1 files changed, 5 insertions, 10 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md
index 7136a7bafb0..7915d54acbc 100644
--- a/src/doc/guide.md
+++ b/src/doc/guide.md
@@ -273,16 +273,11 @@ is still a work in progress. However, it is already good enough to use for many
 Rust projects, and so it is assumed that Rust projects will use Cargo from the
 beginning.
 
-Programmers love car analogies, so I've got a good one for you to think about
-the relationship between `cargo` and `rustc`: `rustc` is like a car, and
-`cargo` is like a robotic driver. You can drive your car yourself, of course,
-but isn't it just easier to let a computer drive it for you?
-
-Anyway, Cargo manages three things: building your code, downloading the
-dependencies your code needs, and building the dependencies your code needs.
-At first, your 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.
+Cargo manages three things: building your code, downloading the dependencies
+your code needs, and building the dependencies your code needs.  At first, your
+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. To do this, we need to build it from source. There are no binaries