diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 16677cf..ebb2cec 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -45,7 +45,7 @@ settings in [rustfmt.toml](rustfmt.toml). This project uses [rust-clippy](https://github.com/rust-lang/rust-clippy) to handle linting, and contributions are expected to be checked using the settings in [clippy.toml](clippy.toml). ->Note: `rustfmt` and `rust-clippy` each have many built-in defaults that will be deferred to in the +>Note: `rustfmt` and `rust-clippy` each have many built-in defaults that will be used in the >absence of a corresponding rule in `rustfmt.toml`/`clippy.toml`. ## Code Policy diff --git a/Cargo.toml b/Cargo.toml index 9827d17..6642687 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "rust-template" edition = "2021" version = "0.1.0" rust-version = "1.76.0" -authors = ["FirstName Lastname "] +authors = ["FirstName LastName "] description = "A short description of your project." documentation = "https://github.com/cooperwalbrun/rust-template/blob/master/README.md" homepage = "https://github.com/cooperwalbrun/rust-template" @@ -18,7 +18,7 @@ exclude = ["/.github/*", "/Makefile.toml", "/clippy.toml", "/rustfmt.toml"] [dependencies] # If this is a library and not an end-user application, it is recommended to use https://github.com/dtolnay/thiserror # If this is an end-user application and not a library, it is recommended to use one of the following: -# Non-CLI programs: https://github.com/dtolnay/anyhow +# Non-CLI-based programs: https://github.com/dtolnay/anyhow # CLI-based programs: https://github.com/yaahc/color-eyre [dev-dependencies]