diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-08-30 23:47:12 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-08-30 23:47:12 -0700 |
| commit | 89d1c9c48c8241cb7befa3c5bd684ec9d7e8e2f1 (patch) | |
| tree | 6a23bdf098b7df3db7726c32d5ee82f0af316c09 | |
| parent | c50fffaa9a961f20400c1523a8cf390e05c12ac5 (diff) | |
| parent | 6138e835f6af60854324fcb1c1096597fb058ada (diff) | |
| download | rust-89d1c9c48c8241cb7befa3c5bd684ec9d7e8e2f1.tar.gz rust-89d1c9c48c8241cb7befa3c5bd684ec9d7e8e2f1.zip | |
rollup merge of #16833 : SebastianZaha/fix-guide-typo
| -rw-r--r-- | src/doc/guide.md | 2 |
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. |
