]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/book/src/ch01-03-hello-cargo.md
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / src / doc / book / src / ch01-03-hello-cargo.md
index 21984d25890f4134080be2ff4b6b7f96ceae193d..4751b6ac649f8dc9399c3e54bb82a4800c6471c6 100644 (file)
@@ -188,7 +188,8 @@ Let’s recap what we’ve learned so far about Cargo:
 
 * We can build a project using `cargo build`.
 * We can build and run a project in one step using `cargo run`.
-* We can build a project without producing a binary to check for errors using `cargo check`.
+* We can build a project without producing a binary to check for errors using
+  `cargo check`.
 * Instead of saving the result of the build in the same directory as our code,
   Cargo stores it in the *target/debug* directory.