Skip to content

Commit

Permalink
cli_utils: fix a typo in a comment
Browse files Browse the repository at this point in the history
The codespell GitHub action fails because of the typo. I don't know
why it started failing now. The comment is 8 months old and the
codespell action hasn't been updated in 5 months.
  • Loading branch information
martinvonz committed Oct 3, 2023
1 parent 0fe2557 commit 5947387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/cli_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2182,7 +2182,7 @@ pub fn write_config_value_to_file(
})?;

// Apply config value
// Iterpret value as string unless it's another simple scalar type.
// Interpret value as string unless it's another simple scalar type.
// TODO(#531): Infer types based on schema (w/ --type arg to override).
let item = match toml_edit::Value::from_str(value_str) {
Ok(value @ toml_edit::Value::Boolean(..))
Expand Down

0 comments on commit 5947387

Please sign in to comment.