From 5947387a3d2d308162dc541da05af1aa3f9467b9 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Mon, 2 Oct 2023 18:02:24 -0700 Subject: [PATCH] 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. --- cli/src/cli_util.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/cli_util.rs b/cli/src/cli_util.rs index 7d3ac7847b..a4bc331761 100644 --- a/cli/src/cli_util.rs +++ b/cli/src/cli_util.rs @@ -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(..))