Fix parens (#2132)

Fix parens
This commit is contained in:
Carol (Nichols || Goulding)
2020-01-27 10:47:10 -05:00
committed by GitHub

View File

@@ -4,7 +4,7 @@ The first parts of the module system well 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 (well explain
modules in depth in the [“Defining Modules to Control Scope and
Privacy”][modules]<!-- ignore -->) section. A *package* is one or more crates
Privacy”][modules]<!-- ignore --> 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.