From 32a13132dd1b411af67427ada43de07f1cb01907 Mon Sep 17 00:00:00 2001 From: marioferpa Date: Mon, 22 Aug 2022 09:03:12 +0200 Subject: [PATCH] Update chapter_1.md "cargo update --dryrun" didn't work for me, and I didn't get results on google, so I'm pretty sure it's a typo and should be "--dry-run". --- book/src/chapter_1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/chapter_1.md b/book/src/chapter_1.md index fe37b016..aca42811 100644 --- a/book/src/chapter_1.md +++ b/book/src/chapter_1.md @@ -257,7 +257,7 @@ I update this tutorial a lot - adding chapters, fixing issues, etc. You will per ## Updating Your Project -You may find that `rltk_rs` or another package has updated, and you would like the latest version. From your project's folder, you can type `cargo update` to update *everything*. You can type `cargo update --dryrun` to see what it would like to update, and not change anything (people update their crates a lot - so this can be a big list!). +You may find that `rltk_rs` or another package has updated, and you would like the latest version. From your project's folder, you can type `cargo update` to update *everything*. You can type `cargo update --dry-run` to see what it would like to update, and not change anything (people update their crates a lot - so this can be a big list!). ## Updating Rust Itself