Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/cargo/rust/cargo-553fd7204f
Browse files Browse the repository at this point in the history
  • Loading branch information
kralka authored Jan 3, 2025
2 parents 7bdabd6 + eb52f1b commit 95d6b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/src/example_iteration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ impl std::str::FromStr for CompressionType {
"LZ4" => Ok(CompressionType::LZ4),
"GZIP" => Ok(CompressionType::Gzip),
"ZLIB" => Ok(CompressionType::Zlib),
_ => Err("{input} unimplemented".to_string()),
_ => Err(format!("{input} unimplemented")),
}
}
}
Expand Down

0 comments on commit 95d6b30

Please sign in to comment.