Skip to content

Commit 95d6b30

Browse files
authored
Merge branch 'main' into dependabot/cargo/rust/cargo-553fd7204f
2 parents 7bdabd6 + eb52f1b commit 95d6b30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/src/example_iteration.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ impl std::str::FromStr for CompressionType {
6161
"LZ4" => Ok(CompressionType::LZ4),
6262
"GZIP" => Ok(CompressionType::Gzip),
6363
"ZLIB" => Ok(CompressionType::Zlib),
64-
_ => Err("{input} unimplemented".to_string()),
64+
_ => Err(format!("{input} unimplemented")),
6565
}
6666
}
6767
}

0 commit comments

Comments
 (0)