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 outdated docs which said that linear was default #1043

Merged
merged 1 commit into from
Oct 28, 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 book/src/commands/find.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ available and of course the limiting factor of the project which will determine
cargo-msrv _check_. By default, the check command, the command used to test whether toolchain passes or fails a check,
is `cargo check`.

There are currently two search strategies: _linear_ (default) and _bisect_. Linear tests projects against toolchains in
There are currently two search strategies: _bisect_ (default) and _linear_. Linear tests projects against toolchains in
a
most-recent to least-recent order. When a check fails, the previous Rust (if any) version is returned as the MSRV (i.e.
the highest still
Expand Down
2 changes: 1 addition & 1 deletion book/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ and of course the limiting factor of the project which will determine the MSRV.
cargo-msrv _check_. By default, the check command, the command used to test whether toolchain passes or fails a check,
is `cargo check`.

There are currently two search strategies: _linear_ and _bisect_ (default). When using the linear strategy, your crate
There are currently two search strategies: _bisect_ (default) and _linear_. When using the linear strategy, your crate
will be checked against toolchains from most-recent to least-recent. When a check fails, the previous Rust (if any)
version is returned as the MSRV (i.e. the highest toolchain for which a check command passes). The bisect strategy uses
a binary search to find the MSRV. This can be significantly faster, so it's usually advisable to keep it enabled by
Expand Down
Loading