From 6fc32eabcd09f7a130094767abadb691dfcdddf7 Mon Sep 17 00:00:00 2001 From: Jacqueline Outka Date: Wed, 22 Mar 2017 00:49:43 -0400 Subject: [PATCH] Fixes #501 --- second-edition/src/ch07-01-mod-and-the-filesystem.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/second-edition/src/ch07-01-mod-and-the-filesystem.md b/second-edition/src/ch07-01-mod-and-the-filesystem.md index 9abcc5c7f..e2f91cdd5 100644 --- a/second-edition/src/ch07-01-mod-and-the-filesystem.md +++ b/second-edition/src/ch07-01-mod-and-the-filesystem.md @@ -92,7 +92,7 @@ Now we have a `network::connect` function and a `client::connect` function. These can have completely different functionality, and the function names do not conflict with each other since they’re in different modules. -While in this case, we’re building a library, there's nothing special about +While in this case we’re building a library, there's nothing special about *src/lib.rs*. We could also make use of submodules in *src/main.rs* as well. In fact, we can also put modules inside of modules. This can be useful as your modules grow to keep related functionality organized together and separate