From f2bd9971f485cdbffc1b1bf6da994ea6bb4476a9 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Sun, 20 Nov 2022 18:17:56 -0500 Subject: [PATCH] Fix typo in Display of NotFoundError --- src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error.rs b/src/error.rs index 57486ba..5199175 100644 --- a/src/error.rs +++ b/src/error.rs @@ -102,7 +102,7 @@ pub struct NotFoundError { impl std::fmt::Display for NotFoundError { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - write!(f, "Resouce at url '{}' could not be found", self.url) + write!(f, "Resource at url '{}' could not be found", self.url) } }