Fix typos

This commit is contained in:
Mathieu David 2016-01-04 00:34:27 +01:00
parent c784b1cda2
commit 6ae257b276
2 changed files with 16 additions and 16 deletions

View File

@ -305,7 +305,7 @@ Cargo checks to see if any of your projects files have been modified, and onl
rebuilds your project if theyve changed since the last time you built it.
With simple projects, Cargo doesn't bring a whole lot over just using `rustc`,
but it will become useful in future. With complex projects composed of multiple
but it will become useful in the future. With complex projects composed of multiple
crates, its much easier to let Cargo coordinate the build. With Cargo, you can
just run `cargo build`, and it should work the right way.

View File

@ -1,6 +1,6 @@
# Introduction
Welcome to “The Rust Programming Language,” an introductory book about Rust.
Welcome to “The Rust Programming Language”, an introductory book about Rust.
Rust is a programming language thats focused on safety, concurrency, and
speed. It maintains these goals without having a garbage collector, making it a
useful language for a number of use cases other languages arent good at: