From 5bd82160c11a90d6d46fc37d7f3ff3e33d120763 Mon Sep 17 00:00:00 2001 From: Julian Hofer Date: Sun, 15 Dec 2019 11:51:32 +0100 Subject: [PATCH] Fix sentence in ch07 --- ...anaging-growing-projects-with-packages-crates-and-modules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch07-00-managing-growing-projects-with-packages-crates-and-modules.md b/src/ch07-00-managing-growing-projects-with-packages-crates-and-modules.md index 241ddd2b09..b61cae42d5 100644 --- a/src/ch07-00-managing-growing-projects-with-packages-crates-and-modules.md +++ b/src/ch07-00-managing-growing-projects-with-packages-crates-and-modules.md @@ -34,7 +34,7 @@ same name in the same scope; tools are available to resolve name conflicts. Rust has a number of features that allow you to manage your code’s organization, including which details are exposed, which details are private, and what names are in each scope in your programs. These features, sometimes -collectively referred to as the *module system*, and include: +collectively referred to as the *module system*, include: * **Packages:** A Cargo feature that lets you build, test, and share crates * **Crates:** A tree of modules that produces a library or executable