mirror of https://github.com/astral-sh/uv
fix small typos (#16357)
## Summary I tried to fix minor typos in the project --------- Co-authored-by: Samuel Rigaud <rigaud@gmail.com> Co-authored-by: konstin <konstin@mailbox.org>
This commit is contained in:
parent
17155c4cca
commit
2fc5fe2ac0
|
|
@ -138,7 +138,7 @@ updated. This change should not break existing workflows.
|
|||
|
||||
## 0.8.x
|
||||
|
||||
See [changeslogs/0.8.x](./changelogs/0.8.x.md)
|
||||
See [changelogs/0.8.x](./changelogs/0.8.x.md)
|
||||
|
||||
## 0.7.x
|
||||
|
||||
|
|
|
|||
|
|
@ -982,7 +982,7 @@ for more details.
|
|||
([#9135](https://github.com/astral-sh/uv/pull/9135))
|
||||
- Tweak script `--no-project` comment ([#10331](https://github.com/astral-sh/uv/pull/10331))
|
||||
- Update copyright year ([#10297](https://github.com/astral-sh/uv/pull/10297))
|
||||
- Add instructinos for installing with Scoop ([#10332](https://github.com/astral-sh/uv/pull/10332))
|
||||
- Add instructions for installing with Scoop ([#10332](https://github.com/astral-sh/uv/pull/10332))
|
||||
|
||||
## 0.5.16
|
||||
|
||||
|
|
|
|||
|
|
@ -1104,7 +1104,7 @@ impl NodeId {
|
|||
// The terminal node representing `true`, or a trivially `true` node.
|
||||
pub(crate) const TRUE: Self = Self(0);
|
||||
|
||||
// The terminal node representing `false`, or an unsatisifable node.
|
||||
// The terminal node representing `false`, or an unsatisfiable node.
|
||||
pub(crate) const FALSE: Self = Self(1);
|
||||
|
||||
/// Create a new, optionally complemented, [`NodeId`] with the given index.
|
||||
|
|
|
|||
|
|
@ -6101,7 +6101,7 @@ fn add_group_to_unsorted() -> Result<()> {
|
|||
Ok(())
|
||||
}
|
||||
|
||||
/// Remomve a requirement from a dependency group.
|
||||
/// Remove a requirement from a dependency group.
|
||||
#[test]
|
||||
fn remove_group() -> Result<()> {
|
||||
let context = TestContext::new("3.12");
|
||||
|
|
|
|||
|
|
@ -11664,7 +11664,7 @@ requires_python = "==3.13.*"
|
|||
"
|
||||
);
|
||||
|
||||
// `--group pylock.toml:test` should be rejeceted.
|
||||
// `--group pylock.toml:test` should be rejected.
|
||||
uv_snapshot!(context.filters(), context.pip_install()
|
||||
.arg("--preview")
|
||||
.arg("-r")
|
||||
|
|
|
|||
|
|
@ -215,7 +215,7 @@ fn run_no_args() -> Result<()> {
|
|||
"#
|
||||
})?;
|
||||
|
||||
// Run without specifying any argunments.
|
||||
// Run without specifying any arguments.
|
||||
#[cfg(not(windows))]
|
||||
uv_snapshot!(context.filters(), context.run(), @r###"
|
||||
success: false
|
||||
|
|
|
|||
Loading…
Reference in New Issue