diff --git a/CHANGELOG.md b/CHANGELOG.md index e9ca82f9..30c42a42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -278,7 +278,7 @@ This release is equal to `v0.11.0`, except that the automated 'release build and ## [0.4.0] - 2021-04-09 -* Added option to only take the latest patch Release version into acount, and make it the default. +* Added option to only take the latest patch Release version into account, and make it the default. * Added minimum and maximum release version options, which can be used to restrict the range of version to be checked. * Change default check command to `cargo check -all` (was `cargo build --all`). * Add option to output a `rust-toolchain` file. diff --git a/src/sub_command/find/mod.rs b/src/sub_command/find/mod.rs index 27cbca5c..a09641e2 100644 --- a/src/sub_command/find/mod.rs +++ b/src/sub_command/find/mod.rs @@ -74,7 +74,7 @@ fn find_msrv( write_msrv( reporter, BareVersion::two_component_from_semver(toolchain.version()), - Some(release_index), // Re-use the already obtained index + Some(release_index), // Reuse the already obtained index environment_ctx, rust_releases_ctx, )?;