From cfac418855506f0588a23585230a06994ef0d149 Mon Sep 17 00:00:00 2001 From: Fouad Almalki Date: Wed, 4 Aug 2021 12:17:33 +0300 Subject: [PATCH] Fix typos in javadocs of RoutingExchange --- .../src/main/java/io/quarkus/vertx/web/RoutingExchange.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/vertx-web/runtime/src/main/java/io/quarkus/vertx/web/RoutingExchange.java b/extensions/vertx-web/runtime/src/main/java/io/quarkus/vertx/web/RoutingExchange.java index d689457978609..54c93cc78dcfb 100644 --- a/extensions/vertx-web/runtime/src/main/java/io/quarkus/vertx/web/RoutingExchange.java +++ b/extensions/vertx-web/runtime/src/main/java/io/quarkus/vertx/web/RoutingExchange.java @@ -70,7 +70,7 @@ default void ok(String chunk) { } /** - * Set the response status code to 200 and return the response. + * Set the response status code to 500 and return the response. * You must call HttpServerResponse.end() afterwards to end the response. * * @return the HTTP response object @@ -80,7 +80,7 @@ default HttpServerResponse serverError() { } /** - * Set the response status code to 200 and return the response. + * Set the response status code to 404 and return the response. * You must call HttpServerResponse.end() afterwards to end the response. * * @return the HTTP response object