about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-08-30 23:47:12 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-08-30 23:47:12 -0700
commit89d1c9c48c8241cb7befa3c5bd684ec9d7e8e2f1 (patch)
tree6a23bdf098b7df3db7726c32d5ee82f0af316c09
parentc50fffaa9a961f20400c1523a8cf390e05c12ac5 (diff)
parent6138e835f6af60854324fcb1c1096597fb058ada (diff)
downloadrust-89d1c9c48c8241cb7befa3c5bd684ec9d7e8e2f1.tar.gz
rust-89d1c9c48c8241cb7befa3c5bd684ec9d7e8e2f1.zip
rollup merge of #16833 : SebastianZaha/fix-guide-typo
-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.