about summary refs log tree commit diff
path: root/src/doc/guide.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/guide.md')
-rw-r--r--src/doc/guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md
index 2eb45537866..a22e69feb07 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.