]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/book/src/ch12-03-improving-error-handling-and-modularity.md
New upstream version 1.35.0+dfsg1
[rustc.git] / src / doc / book / src / ch12-03-improving-error-handling-and-modularity.md
index 6090454f6c1bf1987fbb860dc41f0be16d9f09ff..005a1437c0034b508c754e06699c0c59c2788a91 100644 (file)
@@ -657,7 +657,7 @@ fn main() {
 *src/main.rs*</span>
 
 We add a `use minigrep::Config` line to bring the `Config` type from the
-library crate into the binary crate's scope, and we prefix the `run` function
+library crate into the binary crates scope, and we prefix the `run` function
 with our crate name. Now all the functionality should be connected and should
 work. Run the program with `cargo run` and make sure everything works
 correctly.