Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add io::Error to display
Browse files Browse the repository at this point in the history
Jake-Shadle committed Mar 12, 2024
1 parent 7a120a1 commit e308711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ pub enum Error {
#[error(transparent)]
Io(#[from] std::io::Error),
/// An I/O error occurred trying to access a specific path
#[error("I/O operation failed for path '{}'", .1)]
#[error("I/O operation failed for path '{}': {}", .1, .0)]
IoPath(#[source] std::io::Error, crate::PathBuf),
/// A user provided URL was invalid
#[error(transparent)]

0 comments on commit e308711

Please sign in to comment.