aboutsummaryrefslogtreecommitdiffstats
path: root/src/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/error.rs')
-rw-r--r--src/error.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/error.rs b/src/error.rs
index b682e9d..7b8b524 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -38,10 +38,10 @@ impl std::fmt::Display for Error {
u32::max_value()
),
Self::Read { source } => {
- write!(f, "failed to read from input: {}", source)
+ write!(f, "failed to read from input: {source}")
}
Self::Write { source } => {
- write!(f, "failed to write to output: {}", source)
+ write!(f, "failed to write to output: {source}")
}
}
}