Add comma after "i.e." in Conda environment error (#13423)

This commit is contained in:
Charlie Marsh 2025-05-12 23:51:07 -04:00 committed by GitHub
parent a179972e2d
commit 3b8139526a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -226,7 +226,7 @@ impl RequirementsSpecification {
} }
RequirementsSource::EnvironmentYml(path) => { RequirementsSource::EnvironmentYml(path) => {
return Err(anyhow::anyhow!( return Err(anyhow::anyhow!(
"Conda environment files (i.e. `{}`) are not supported", "Conda environment files (i.e., `{}`) are not supported",
path.user_display() path.user_display()
)) ))
} }

View File

@ -3852,7 +3852,7 @@ fn add_environment_yml_error() -> Result<()> {
----- stdout ----- ----- stdout -----
----- stderr ----- ----- stderr -----
error: Conda environment files (i.e. `environment.yml`) are not supported error: Conda environment files (i.e., `environment.yml`) are not supported
"); ");
Ok(()) Ok(())

View File

@ -8253,7 +8253,7 @@ fn install_unsupported_environment_yml() -> Result<()> {
----- stdout ----- ----- stdout -----
----- stderr ----- ----- stderr -----
error: Conda environment files (i.e. `environment.yml`) are not supported error: Conda environment files (i.e., `environment.yml`) are not supported
"); ");
Ok(()) Ok(())