about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-03-13 18:11:40 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-03-13 18:11:40 +0530
commit63bdfbf90aa44f7a9f63f74e96ce8dbcc6fb80a2 (patch)
treef62c5e017b516fd7924a930c97959c7754eecbeb /src
parentb00c310985d5ecd2439672ab595f81aaaf0a7382 (diff)
parentccfc381044706c6edbfa6054a7e73684ec0f1da6 (diff)
downloadrust-63bdfbf90aa44f7a9f63f74e96ce8dbcc6fb80a2.tar.gz
rust-63bdfbf90aa44f7a9f63f74e96ce8dbcc6fb80a2.zip
Rollup merge of #23317 - tanadeau:fix-formatting-and-grammar, r=steveklabnik
 Fixed grammar errors (incorrect uses of commas and \"you're\" instead of \"your\") and broke up a long line.

r? @steveklabnik
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/hello-cargo.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/doc/trpl/hello-cargo.md b/src/doc/trpl/hello-cargo.md
index d077aac7c2d..b45211e3a08 100644
--- a/src/doc/trpl/hello-cargo.md
+++ b/src/doc/trpl/hello-cargo.md
@@ -85,9 +85,11 @@ Hello, world!
 Bam! We build our project with `cargo build`, and run it with
 `./target/debug/hello_world`. This hasn't bought us a whole lot over our simple use
 of `rustc`, but think about the future: when our project has more than one
-file, we would need to call `rustc` more than once, and pass it a bunch of options to
+file, we would need to call `rustc` more than once and pass it a bunch of options to
 tell it to build everything together. With Cargo, as our project grows, we can
-just `cargo build` and it'll work the right way. When you're project is finally ready for release, you can use `cargo build --release` to compile your crates with optimizations.
+just `cargo build`, and it'll work the right way. When your project is finally
+ready for release, you can use `cargo build --release` to compile your crates with
+optimizations.
 
 You'll also notice that Cargo has created a new file: `Cargo.lock`.