Skip to content

Commit 57b6717

Browse files
committed
docs(snap): Fix bounds on cargo env support
Fixes #310
1 parent c721574 commit 57b6717

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/cargo.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ where
103103
/// needed.
104104
///
105105
/// Cargo support:
106-
/// - `>1.94`: works
106+
/// - `>=1.94`: works
107107
/// - `>=1.91,<=1.93`: works with default `build-dir`
108-
/// - `<=1.92`: works
108+
/// - `<=1.90`: works
109109
///
110110
/// # Panic
111111
///
@@ -221,9 +221,9 @@ impl fmt::Display for NotFoundError {
221221
/// Look up the path to a cargo-built binary within an integration test
222222
///
223223
/// Cargo support:
224-
/// - `>1.94`: works
224+
/// - `>=1.94`: works
225225
/// - `>=1.91,<=1.93`: works with default `build-dir`
226-
/// - `<=1.92`: works
226+
/// - `<=1.90`: works
227227
///
228228
/// # Panic
229229
///

src/cmd.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ impl Command {
3838
/// See the [`cargo` module documentation][crate::cargo] for caveats and workarounds.
3939
///
4040
/// Cargo support:
41-
/// - `>1.94`: works
41+
/// - `>=1.94`: works
4242
/// - `>=1.91,<=1.93`: works with default `build-dir`
43-
/// - `<=1.92`: works
43+
/// - `<=1.90`: works
4444
///
4545
/// # Panic
4646
///

0 commit comments

Comments
 (0)