Skip to content

Commit

Permalink
chore: fix typos (#7366)
Browse files Browse the repository at this point in the history
<!--
Thank you for contributing to uv! To help us out with reviewing, please
consider the following:

- Does this pull request include a summary of the change? (See below.)
- Does this pull request include a descriptive title?
- Does this pull request include references to any relevant issues?
-->

## Summary

<!-- What's the purpose of the change? What does it do, and why? -->

 fix symbol error

## Test Plan

<!-- How was it tested? -->

Signed-off-by: liangmulu <[email protected]>
  • Loading branch information
liangmulu authored Sep 13, 2024
1 parent d9f53cc commit 0855585
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/uv-pubgrub/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ impl PubGrubSpecifier {
} else {
// Per PEP 440: "The exclusive ordered comparison <V MUST NOT allow a
// pre-release of the specified version unless the specified version is itself a
// pre-release.
// pre-release."
Range::strictly_lower_than(version.with_min(Some(0)))
}
}
Expand Down
2 changes: 1 addition & 1 deletion crates/uv/tests/export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ fn dependency_multiple_markers() -> Result<()> {

context.lock().assert().success();

// Note that the `python_version > '3.11'" markers disappear due to `requires-python = ">=3.12"`
// Note that the `python_version > '3.11'` markers disappear due to `requires-python = ">=3.12"`
uv_snapshot!(context.filters(), context.export(), @r###"
success: true
exit_code: 0
Expand Down

0 comments on commit 0855585

Please sign in to comment.