Skip to content

Commit

Permalink
fix: make compile
Browse files Browse the repository at this point in the history
  • Loading branch information
fbozic committed Nov 11, 2024
1 parent ff44dee commit 8eadfa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/merod/src/cli/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl FromStr for KeyValuePair {
let key = parts.next().ok_or("Missing key")?.to_owned();

let value = parts.next().ok_or("Missing value")?;
let value = Value::from_str(value).map_err(|e| e.to_owned())?;
let value = Value::from_str(value).map_err(|e| e.to_string())?;

Ok(Self { key, value })
}
Expand Down

0 comments on commit 8eadfa8

Please sign in to comment.