This commit is contained in:
Jacqueline Outka
2017-03-22 00:49:43 -04:00
parent 9bd223ca40
commit 6fc32eabcd
@@ -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 theyre in different modules.
While in this case, were building a library, there's nothing special about
While in this case were 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