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) } }