From 056d3eb7b6fdedc090bf9c5abe8544aae314b51f Mon Sep 17 00:00:00 2001 From: Sandman <71186324+SandmansDreams@users.noreply.github.com> Date: Mon, 22 Dec 2025 10:30:06 -0700 Subject: [PATCH] Remove redundant / repeated lines Removed additional explanation of 'cargo fmt' command. --- src/appendix-04-useful-development-tools.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/appendix-04-useful-development-tools.md b/src/appendix-04-useful-development-tools.md index 229ccd09e3..66f9c06600 100644 --- a/src/appendix-04-useful-development-tools.md +++ b/src/appendix-04-useful-development-tools.md @@ -20,16 +20,6 @@ any Cargo project, enter the following: $ cargo fmt ``` -Running this command reformats all the Rust code in the current crate. This -should only change the code style, not the code semantics. - -This command gives you `rustfmt` and `cargo-fmt`, similar to how Rust gives you -both `rustc` and `cargo`. To format any Cargo project, enter the following: - -```console -$ cargo fmt -``` - Running this command reformats all the Rust code in the current crate. This should only change the code style, not the code semantics. For more information on `rustfmt`, see [its documentation][rustfmt].