about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Hansford <dangthrimble@hansfords.net>2015-08-03 21:37:15 +0100
committerJonathan Hansford <dangthrimble@hansfords.net>2015-08-03 21:37:15 +0100
commitc54df0e4541f66d43109c844782c43a2bd24d97d (patch)
treecaec4cce4d08948164ebd360e329732f20b25dba
parentd9b18822489f5734eed9698beef3b0076d0ab9b3 (diff)
downloadrust-c54df0e4541f66d43109c844782c43a2bd24d97d.tar.gz
rust-c54df0e4541f66d43109c844782c43a2bd24d97d.zip
required -> used; you -> we
-rw-r--r--src/doc/trpl/hello-cargo.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/trpl/hello-cargo.md b/src/doc/trpl/hello-cargo.md
index 7df04792ec8..4bd7de23f0c 100644
--- a/src/doc/trpl/hello-cargo.md
+++ b/src/doc/trpl/hello-cargo.md
@@ -35,8 +35,8 @@ $ rm main  # or main.exe on Windows
 
 Note that since we're creating an executable, we retain `main.rs` as the source
 filename. If we want to make a library instead, we should use `lib.rs`. This
-convention is required for Cargo to successfully compile our projects, but it
-can be overridden if we wish. Custom file locations for the entry point can be
+convention is used by Cargo to successfully compile our projects, but it can be
+overridden if we wish. Custom file locations for the entry point can be
 specified with a [`[lib]` or `[[bin]]`][crates-custom] key in the TOML file.
 
 [crates-custom]: http://doc.crates.io/manifest.html#configuring-a-target
@@ -74,7 +74,7 @@ extra goodies. According to the TOML docs,
 
 [toml]: https://github.com/toml-lang/toml
 
-Once you have this file in place in your project's root directory, we should be
+Once we have this file in place in our project's root directory, we should be
 ready to build! To do so, run:
 
 ```bash