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].