forked from mirrors/jj
cli_utils: fix a typo in a comment
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.
This commit is contained in:
parent
0fe25575ba
commit
5947387a3d
1 changed files with 1 additions and 1 deletions
|
@ -2182,7 +2182,7 @@ pub fn write_config_value_to_file(
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
// Apply config value
|
// 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).
|
// TODO(#531): Infer types based on schema (w/ --type arg to override).
|
||||||
let item = match toml_edit::Value::from_str(value_str) {
|
let item = match toml_edit::Value::from_str(value_str) {
|
||||||
Ok(value @ toml_edit::Value::Boolean(..))
|
Ok(value @ toml_edit::Value::Boolean(..))
|
||||||
|
|
Loading…
Reference in a new issue