Skip to content

Commit

Permalink
Fix typo in Display of NotFoundError
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder authored and theduke committed Oct 28, 2023
1 parent 8836fa7 commit f2bd997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

Expand Down

0 comments on commit f2bd997

Please sign in to comment.