diff --git a/api/src/routes/images.rs b/api/src/routes/images.rs index e2e5f28..242a7c2 100644 --- a/api/src/routes/images.rs +++ b/api/src/routes/images.rs @@ -19,7 +19,7 @@ enum ImageError { #[error("database error: {0}")] DatabaseError(#[from] sqlx::Error), - #[error("source with id {0} not found")] + #[error("image with id {0} not found")] ImageNotFound(i64), }