about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNathan Stoddard <nstodda@purdue.edu>2015-01-09 17:21:30 -0500
committerNathan Stoddard <nstodda@purdue.edu>2015-01-09 17:21:30 -0500
commit2a29296ea3f891f3216962d0ba8ada078a0657e6 (patch)
treec5c23846c60e77919014f360fbc19c14a33b1bcf /src
parentb5571ed71a5879c0495a982506258d5d267744ed (diff)
downloadrust-2a29296ea3f891f3216962d0ba8ada078a0657e6.tar.gz
rust-2a29296ea3f891f3216962d0ba8ada078a0657e6.zip
Fix a couple wording issues in trpl book
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/README.md2
-rw-r--r--src/doc/trpl/hello-cargo.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/README.md b/src/doc/trpl/README.md
index 0202e873b36..6eb896d808a 100644
--- a/src/doc/trpl/README.md
+++ b/src/doc/trpl/README.md
@@ -11,7 +11,7 @@ navigate through the menu on the left.
 ## Basics
 
 This section is a linear introduction to the basic syntax and semantics of
-Rust. It has individual sections on each part of Rust's syntax, and cumulates
+Rust. It has individual sections on each part of Rust's syntax, and culminates
 in a small project: a guessing game.
 
 After reading "Basics," you will have a good foundation to learn more about
diff --git a/src/doc/trpl/hello-cargo.md b/src/doc/trpl/hello-cargo.md
index d8acd95b59d..ee60ce4dfcf 100644
--- a/src/doc/trpl/hello-cargo.md
+++ b/src/doc/trpl/hello-cargo.md
@@ -7,7 +7,7 @@ Rust projects, and so it is assumed that Rust projects will use Cargo from the
 beginning.
 
 Cargo manages three things: building your code, downloading the dependencies
-your code needs, and building the dependencies your code needs.  At first, your
+your code needs, and building those dependencies. 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.