We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7763fcd + c22d403 commit de7f70fCopy full SHA for de7f70f
src/ch01-03-hello-cargo.md
@@ -188,8 +188,9 @@ build` when they’re ready to use the executable.
188
189
Let’s recap what we’ve learned so far about Cargo:
190
191
-* We can build a project using `cargo build` or `cargo check`.
+* We can build a project using `cargo build`.
192
* We can build and run a project in one step using `cargo run`.
193
+* We can build a project without producing a binary to check for errors using `cargo check`.
194
* Instead of saving the result of the build in the same directory as our code,
195
Cargo stores it in the *target/debug* directory.
196
0 commit comments