Skip to content

Commit

Permalink
Merge pull request #1043 from gretchenfrage/issue-1042
Browse files Browse the repository at this point in the history
Fix outdated docs which said that linear was default
  • Loading branch information
foresterre authored Oct 28, 2024
2 parents 80c28fd + 70b35f0 commit 4199f78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 4199f78

Please sign in to comment.