From 573ae9e6c7a87c579de0365d71504f177d29793e Mon Sep 17 00:00:00 2001 From: Scott Leberknight <174812+sleberknight@users.noreply.github.com> Date: Fri, 9 Aug 2024 19:28:54 +0000 Subject: [PATCH] Fix javadoc --- src/main/java/org/kiwiproject/jaxrs/KiwiStandardResponses.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/kiwiproject/jaxrs/KiwiStandardResponses.java b/src/main/java/org/kiwiproject/jaxrs/KiwiStandardResponses.java index fa8447f0..89474713 100644 --- a/src/main/java/org/kiwiproject/jaxrs/KiwiStandardResponses.java +++ b/src/main/java/org/kiwiproject/jaxrs/KiwiStandardResponses.java @@ -335,7 +335,7 @@ public static Response standardInternalServerErrorResponse(String errorDetails) * which uses {@code errorDetails} as the detailed error message. * * @param errorDetails the error message to use - * @return a response builder with the given status code and {@code application/json} content type + * @return a response builder with a 500 status code and {@code application/json} content type */ public static Response.ResponseBuilder standardInternalServerErrorResponseBuilder(String errorDetails) { return standardErrorResponseBuilder(Response.Status.INTERNAL_SERVER_ERROR, errorDetails);