From 6138e835f6af60854324fcb1c1096597fb058ada Mon Sep 17 00:00:00 2001 From: Sebastian Zaha Date: Thu, 28 Aug 2014 23:14:09 +0200 Subject: [PATCH] Fix guide typo. --- src/doc/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 8a634a083e8..d6402c96459 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -3300,7 +3300,7 @@ To learn more, run the command again with --verbose. Rust can't find this function. That makes sense, as we didn't write it yet! -In order to share this codes with our tests, we'll need to make a library crate. +In order to share this code with our tests, we'll need to make a library crate. This is also just good software design: as we mentioned before, it's a good idea to put most of your functionality into a library crate, and have your executable crate use that library. This allows for code re-use.