diff --git a/crates/uv-python/src/interpreter.rs b/crates/uv-python/src/interpreter.rs index cb5ab8fcd993..3f65f9a57844 100644 --- a/crates/uv-python/src/interpreter.rs +++ b/crates/uv-python/src/interpreter.rs @@ -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 },