Skip to content

Commit

Permalink
chore(write): fix stable error
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Jun 25, 2024
1 parent 5f48af7 commit 73597cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ impl AsyncWriter {
})))))
}
_ => Err(Error::IoError(
std::io::Error::other("File not created"),
std::io::Error::new(std::io::ErrorKind::Other, "temp file create error"),
"Possible memory issues for file handle".into(),
)),
}
Expand Down

0 comments on commit 73597cc

Please sign in to comment.