From faf98dca7f1f01c07f45a4b2be64b9c06f3dc920 Mon Sep 17 00:00:00 2001 From: Georgios Andrianakis Date: Tue, 25 Jul 2023 16:43:23 +0300 Subject: [PATCH] Update docs/src/main/asciidoc/http-reference.adoc Co-authored-by: George Gastaldi --- docs/src/main/asciidoc/http-reference.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/http-reference.adoc b/docs/src/main/asciidoc/http-reference.adoc index e61f12c3815b5a..17fb762b833f6f 100644 --- a/docs/src/main/asciidoc/http-reference.adoc +++ b/docs/src/main/asciidoc/http-reference.adoc @@ -461,7 +461,7 @@ public static class MyCustomizer implements HttpServerOptionsCustomizer { } } ---- -<1> By making the class a bean, Quarkus will take the customizer into account when it starts the Vert.x servers +<1> By making the class a managed bean, Quarkus will take the customizer into account when it starts the Vert.x servers <2> In this case, we only care about customizing the HTTP server, so we just override the `customizeHttpServer` method. [[reverse-proxy]]