Fix typo "operation system" (#9971)

## Summary

Just a tiny typo fix.
This commit is contained in:
Aarni Koskela 2024-12-17 15:33:45 +02:00 committed by GitHub
parent 9e4b842382
commit 25db0e4988
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -598,7 +598,7 @@ enum InterpreterInfoResult {
pub enum InterpreterInfoError {
#[error("Could not detect a glibc or a musl libc (while running on Linux)")]
LibcNotFound,
#[error("Unknown operation system: `{operating_system}`")]
#[error("Unknown operating system: `{operating_system}`")]
UnknownOperatingSystem { operating_system: String },
#[error("Python {python_version} is not supported. Please use Python 3.8 or newer.")]
UnsupportedPythonVersion { python_version: String },