Skip to content

Commit

Permalink
Fix typo "operation system" (#9971)
Browse files Browse the repository at this point in the history
## Summary

Just a tiny typo fix.
  • Loading branch information
akx authored Dec 17, 2024
1 parent 9e4b842 commit 25db0e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/uv-python/src/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down

0 comments on commit 25db0e4

Please sign in to comment.