diff options
Diffstat (limited to 'ext/cache')
-rw-r--r-- | ext/cache/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/cache/lib.rs b/ext/cache/lib.rs index 08661c349..b9cc5427c 100644 --- a/ext/cache/lib.rs +++ b/ext/cache/lib.rs @@ -28,7 +28,7 @@ pub enum CacheError { Resource(deno_core::error::AnyError), #[error(transparent)] Other(deno_core::error::AnyError), - #[error(transparent)] + #[error("{0}")] Io(#[from] std::io::Error), } |