From 25db0e4988694ec4e4f98087170c438a7952194d Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Tue, 17 Dec 2024 15:33:45 +0200 Subject: [PATCH] Fix typo "operation system" (#9971) ## Summary Just a tiny typo fix. --- crates/uv-python/src/interpreter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv-python/src/interpreter.rs b/crates/uv-python/src/interpreter.rs index cb5ab8fcd..3f65f9a57 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 },