]> git.lizzy.rs Git - rust.git/commitdiff
required -> used; you -> we
authorJonathan Hansford <dangthrimble@hansfords.net>
Mon, 3 Aug 2015 20:37:15 +0000 (21:37 +0100)
committerJonathan Hansford <dangthrimble@hansfords.net>
Mon, 3 Aug 2015 20:37:15 +0000 (21:37 +0100)
src/doc/trpl/hello-cargo.md

index 7df04792ec830063d6e7b88f90ddfd96702b9a85..4bd7de23f0cd6648b4786fa3798a9b7de0bb7b1b 100644 (file)
@@ -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