Skip to content

Commit 887cc81

Browse files
authored
chore: upgrade typos-cli and fix typos (#23743)
Signed-off-by: MrCroxx <[email protected]>
1 parent f841479 commit 887cc81

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1168,7 +1168,7 @@ fi
11681168
private = true
11691169
category = "RiseDev - Check"
11701170
description = "Run cargo typos-cli check"
1171-
install_crate = { min_version = "1.30.2", crate_name = "typos-cli", binary = "typos", test_arg = [
1171+
install_crate = { min_version = "1.39.0", crate_name = "typos-cli", binary = "typos", test_arg = [
11721172
"--help",
11731173
], install_command = "binstall" }
11741174
script = """

src/connector/src/sink/encoder/template.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ impl TemplateEncoderOutput {
433433
"RedisGeoKey can't convert to string".to_owned(),
434434
)),
435435
TemplateEncoderOutput::RedisGeoValue(_) => Err(SinkError::Encode(
436-
"RedisGeoVelue can't convert to string".to_owned(),
436+
"RedisGeoValue can't convert to string".to_owned(),
437437
)),
438438
TemplateEncoderOutput::RedisPubSubStreamKey(s) => Ok(s),
439439
TemplateEncoderOutput::RedisStreamValue((_, _)) => Err(SinkError::Encode(
@@ -451,7 +451,7 @@ impl SerTo<String> for TemplateEncoderOutput {
451451
"RedisGeoKey can't convert to string".to_owned(),
452452
)),
453453
TemplateEncoderOutput::RedisGeoValue(_) => Err(SinkError::Encode(
454-
"RedisGeoVelue can't convert to string".to_owned(),
454+
"RedisGeoValue can't convert to string".to_owned(),
455455
)),
456456
TemplateEncoderOutput::RedisPubSubStreamKey(s) => Ok(s),
457457
TemplateEncoderOutput::RedisStreamValue((_, _)) => Err(SinkError::Encode(

0 commit comments

Comments
 (0)