diff --git a/src/main/java/org/kiwiproject/net/KiwiHttpResponses.java b/src/main/java/org/kiwiproject/net/KiwiHttpResponses.java index d78d594a..c9fd18a1 100644 --- a/src/main/java/org/kiwiproject/net/KiwiHttpResponses.java +++ b/src/main/java/org/kiwiproject/net/KiwiHttpResponses.java @@ -199,7 +199,7 @@ public static boolean forbidden(int statusCode) { * Check if the given status code is 404 Not Found. * * @param statusCode the status code to check - * @return true if the status code is , otherwise false + * @return true if the status code is 404, otherwise false */ public static boolean notFound(int statusCode) { return statusCode == 404;