From c54df0e4541f66d43109c844782c43a2bd24d97d Mon Sep 17 00:00:00 2001 From: Jonathan Hansford Date: Mon, 3 Aug 2015 21:37:15 +0100 Subject: [PATCH] required -> used; you -> we --- src/doc/trpl/hello-cargo.md | 6 +++--- 1 file 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 -- 2.44.0