1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-07-22 17:18:37 +00:00

Fix minor typo

This commit is contained in:
Frank Steinborn 2021-10-18 00:25:04 +02:00 committed by fguillot
parent 87d58987a6
commit 2dcabc840c
4 changed files with 4 additions and 4 deletions

View file

@ -42,7 +42,7 @@ func (r *Response) String() string {
)
}
// IsNotFound returns true if the resource doesn't exists anymore.
// IsNotFound returns true if the resource doesn't exist anymore.
func (r *Response) IsNotFound() bool {
return r.StatusCode == 404 || r.StatusCode == 410
}