]> git.lizzy.rs Git - rust.git/blobdiff - src/doc/guide.md
rollup merge of #16833 : SebastianZaha/fix-guide-typo
[rust.git] / src / doc / guide.md
index 2eb45537866b461d36b81e917cc6d1bce0c908ff..a22e69feb07403e167b0e6b34536aa82e9b4a448 100644 (file)
@@ -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.