diff --git a/crates/atuin-client/src/theme.rs b/crates/atuin-client/src/theme.rs index d4827f51279..d45f1e9d261 100644 --- a/crates/atuin-client/src/theme.rs +++ b/crates/atuin-client/src/theme.rs @@ -195,7 +195,7 @@ fn from_string(name: &str) -> Result { }) } '@' => { - // For full fleixibility, we need to use serde_json, given + // For full flexibility, we need to use serde_json, given // crossterm's approach. serde_json::from_str::(format!("\"{}\"", &name[1..]).as_str()) .map_err(|_| format!("Could not convert color name {} to Crossterm color", name))