Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #1085

Merged
merged 1 commit into from
Dec 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/sub_command/find/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
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

Check warning on line 77 in src/sub_command/find/mod.rs

View check run for this annotation

Codecov / codecov/patch

src/sub_command/find/mod.rs#L77

Added line #L77 was not covered by tests
environment_ctx,
rust_releases_ctx,
)?;
Expand Down
Loading