From 2a29296ea3f891f3216962d0ba8ada078a0657e6 Mon Sep 17 00:00:00 2001 From: Nathan Stoddard Date: Fri, 9 Jan 2015 17:21:30 -0500 Subject: [PATCH] Fix a couple wording issues in trpl book --- src/doc/trpl/README.md | 2 +- src/doc/trpl/hello-cargo.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/trpl/README.md b/src/doc/trpl/README.md index 0202e873b3644..6eb896d808af0 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 d8acd95b59d8f..ee60ce4dfcf4d 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.