Skip to content

Commit 63bdfbf

Browse files
committed
Rollup merge of rust-lang#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
2 parents b00c310 + ccfc381 commit 63bdfbf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/doc/trpl/hello-cargo.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,11 @@ Hello, world!
8585
Bam! We build our project with `cargo build`, and run it with
8686
`./target/debug/hello_world`. This hasn't bought us a whole lot over our simple use
8787
of `rustc`, but think about the future: when our project has more than one
88-
file, we would need to call `rustc` more than once, and pass it a bunch of options to
88+
file, we would need to call `rustc` more than once and pass it a bunch of options to
8989
tell it to build everything together. With Cargo, as our project grows, we can
90-
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.
90+
just `cargo build`, and it'll work the right way. When your project is finally
91+
ready for release, you can use `cargo build --release` to compile your crates with
92+
optimizations.
9193

9294
You'll also notice that Cargo has created a new file: `Cargo.lock`.
9395

0 commit comments

Comments
 (0)