diff --git a/src/ch07-01-packages-and-crates.md b/src/ch07-01-packages-and-crates.md index 1b7a163af..2bf2f112d 100644 --- a/src/ch07-01-packages-and-crates.md +++ b/src/ch07-01-packages-and-crates.md @@ -4,7 +4,7 @@ The first parts of the module system we’ll cover are packages and crates. A crate is a binary or library. The *crate root* is a source file that the Rust compiler starts from and makes up the root module of your crate (we’ll explain modules in depth in the [“Defining Modules to Control Scope and -Privacy”][modules]) section. A *package* is one or more crates +Privacy”][modules] section). A *package* is one or more crates that provide a set of functionality. A package contains a *Cargo.toml* file that describes how to build those crates.