doc(examples): fix type mismatch
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
parent
468f314b29
commit
b7cce8a296
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ use std::io::Write;
|
|||
use zip::write::SimpleFileOptions;
|
||||
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
if !cfg!(feature = "_deflate-any") {
|
||||
return Err("Please enable one of the deflate features");
|
||||
return Err("Please enable one of the deflate features".into());
|
||||
}
|
||||
let args: Vec<_> = std::env::args().collect();
|
||||
if args.len() < 2 {
|
||||
|
|
Loading…
Add table
Reference in a new issue