fix(guide): Fix direction of comparison

This commit is contained in:
Ed Page 2024-01-20 11:38:30 -06:00
parent 7f9355a73d
commit 8d083f85dd
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ Some details may change over time though `cargo check && rustup update && cargo
Controls how `Cargo.lock` gets updated on changes to `Cargo.toml` and with `cargo update`. This does not affect `cargo install`.
* `maximum`: prefer the highest compatible versions of dependencies
* `rust-version`: prefer dependencies where their `package.rust-version` is greater than or equal to your `package.rust-version`
* `rust-version`: prefer dependencies where their `package.rust-version` is less than or equal to your `package.rust-version`
`rust-version` can be overridden with `--ignore-rust-version` which will fallback to `maximum`.