mirror of https://github.com/astral-sh/uv
Add comma after "i.e." in Conda environment error (#13423)
This commit is contained in:
parent
a179972e2d
commit
3b8139526a
|
|
@ -226,7 +226,7 @@ impl RequirementsSpecification {
|
|||
}
|
||||
RequirementsSource::EnvironmentYml(path) => {
|
||||
return Err(anyhow::anyhow!(
|
||||
"Conda environment files (i.e. `{}`) are not supported",
|
||||
"Conda environment files (i.e., `{}`) are not supported",
|
||||
path.user_display()
|
||||
))
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3852,7 +3852,7 @@ fn add_environment_yml_error() -> Result<()> {
|
|||
----- stdout -----
|
||||
|
||||
----- stderr -----
|
||||
error: Conda environment files (i.e. `environment.yml`) are not supported
|
||||
error: Conda environment files (i.e., `environment.yml`) are not supported
|
||||
");
|
||||
|
||||
Ok(())
|
||||
|
|
|
|||
|
|
@ -8253,7 +8253,7 @@ fn install_unsupported_environment_yml() -> Result<()> {
|
|||
----- stdout -----
|
||||
|
||||
----- stderr -----
|
||||
error: Conda environment files (i.e. `environment.yml`) are not supported
|
||||
error: Conda environment files (i.e., `environment.yml`) are not supported
|
||||
");
|
||||
|
||||
Ok(())
|
||||
|
|
|
|||
Loading…
Reference in New Issue