From bb76d1d176ec72c29559d1ec00510e52fa258a92 Mon Sep 17 00:00:00 2001 From: Aleru <41040598+Aleru@users.noreply.github.com> Date: Fri, 13 Sep 2019 07:50:42 -0400 Subject: [PATCH 1/4] Update ch07-05-separating-modules-into-different-files.md --- src/ch07-05-separating-modules-into-different-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch07-05-separating-modules-into-different-files.md b/src/ch07-05-separating-modules-into-different-files.md index 4a039fa83e..4285cbb39c 100644 --- a/src/ch07-05-separating-modules-into-different-files.md +++ b/src/ch07-05-separating-modules-into-different-files.md @@ -76,7 +76,7 @@ that module. ## Summary -Rust lets you organize your packages into crates and your crates into modules +Rust lets you divide a package into multiple crates and a crates into modules so you can refer to items defined in one module from another module. You can do this by specifying absolute or relative paths. These paths can be brought into scope with a `use` statement so you can use a shorter path for multiple uses of From f0e949c2102980c5b30e1cc486608e301cd424ed Mon Sep 17 00:00:00 2001 From: Aleru <41040598+Aleru@users.noreply.github.com> Date: Fri, 13 Sep 2019 07:52:22 -0400 Subject: [PATCH 2/4] Update ch07-05-separating-modules-into-different-files.md --- src/ch07-05-separating-modules-into-different-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch07-05-separating-modules-into-different-files.md b/src/ch07-05-separating-modules-into-different-files.md index 4285cbb39c..3d2c6d0836 100644 --- a/src/ch07-05-separating-modules-into-different-files.md +++ b/src/ch07-05-separating-modules-into-different-files.md @@ -76,7 +76,7 @@ that module. ## Summary -Rust lets you divide a package into multiple crates and a crates into modules +Rust lets you divide a package into multiple crates and a crate into modules so you can refer to items defined in one module from another module. You can do this by specifying absolute or relative paths. These paths can be brought into scope with a `use` statement so you can use a shorter path for multiple uses of From c2cffb139818992fbe0c11d22cce511de3c20da6 Mon Sep 17 00:00:00 2001 From: Aleru <41040598+Aleru@users.noreply.github.com> Date: Fri, 13 Sep 2019 08:28:02 -0400 Subject: [PATCH 3/4] Update ch07-05-separating-modules-into-different-files.md --- src/ch07-05-separating-modules-into-different-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch07-05-separating-modules-into-different-files.md b/src/ch07-05-separating-modules-into-different-files.md index 3d2c6d0836..0a455fb929 100644 --- a/src/ch07-05-separating-modules-into-different-files.md +++ b/src/ch07-05-separating-modules-into-different-files.md @@ -76,7 +76,7 @@ that module. ## Summary -Rust lets you divide a package into multiple crates and a crate into modules +Rust lets you partition a package into multiple crates and a crate into modules so you can refer to items defined in one module from another module. You can do this by specifying absolute or relative paths. These paths can be brought into scope with a `use` statement so you can use a shorter path for multiple uses of From a5a5bf9d6ea5763a9110f727911a21da854b1d90 Mon Sep 17 00:00:00 2001 From: Aleru <41040598+Aleru@users.noreply.github.com> Date: Mon, 14 Oct 2019 12:56:15 -0400 Subject: [PATCH 4/4] Update ch07-05-separating-modules-into-different-files.md --- src/ch07-05-separating-modules-into-different-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch07-05-separating-modules-into-different-files.md b/src/ch07-05-separating-modules-into-different-files.md index 0a455fb929..6b51859afd 100644 --- a/src/ch07-05-separating-modules-into-different-files.md +++ b/src/ch07-05-separating-modules-into-different-files.md @@ -76,7 +76,7 @@ that module. ## Summary -Rust lets you partition a package into multiple crates and a crate into modules +Rust lets you split a package into multiple crates and a crate into modules so you can refer to items defined in one module from another module. You can do this by specifying absolute or relative paths. These paths can be brought into scope with a `use` statement so you can use a shorter path for multiple uses of