Skip to content

Commit 8517f6f

Browse files
committed
Reword ch01-03 recap paragraph
The original wording suggests that cargo check builds a project. The new wording makes it clear what its actual functionality is.
1 parent f5db319 commit 8517f6f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ch01-03-hello-cargo.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,9 @@ build` when they’re ready to use the executable.
188188

189189
Let’s recap what we’ve learned so far about Cargo:
190190

191-
* We can build a project using `cargo build` or `cargo check`.
191+
* We can build a project using `cargo build`.
192192
* We can build and run a project in one step using `cargo run`.
193+
* We can check a project's correctness without building it using `cargo check` .
193194
* Instead of saving the result of the build in the same directory as our code,
194195
Cargo stores it in the *target/debug* directory.
195196

0 commit comments

Comments
 (0)