From 26a78d2f529b518492edcc5b2d188264ef90f1b4 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Wed, 28 Feb 2024 17:02:33 -0500 Subject: [PATCH] minor cut n paste typo in disk_store example --- examples/disk.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/disk.rs b/examples/disk.rs index 83bbe5b..a465335 100644 --- a/examples/disk.rs +++ b/examples/disk.rs @@ -11,7 +11,7 @@ use thiserror::Error; #[derive(Error, Debug, PartialEq, Clone)] enum ExampleError { - #[error("error with redis cache `{0}`")] + #[error("error with disk cache `{0}`")] DiskError(String), }