From 2e13dcd9d6f271c9c8564644049904b7b1d7689d Mon Sep 17 00:00:00 2001 From: Georgios Andrianakis Date: Tue, 24 May 2022 12:16:17 +0300 Subject: [PATCH] Apply minor javadoc fixes to HttpSecurityPolicy --- .../vertx/http/runtime/security/HttpSecurityPolicy.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/security/HttpSecurityPolicy.java b/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/security/HttpSecurityPolicy.java index 1a2eebbd1e295..88a10a5da1932 100644 --- a/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/security/HttpSecurityPolicy.java +++ b/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/security/HttpSecurityPolicy.java @@ -7,7 +7,7 @@ import io.vertx.ext.web.RoutingContext; /** - * A HTTP Security policy, that controls which requests are allowed to proceeed. + * An HTTP Security policy, that controls which requests are allowed to proceed. * * There are two different ways these policies can be installed. The easiest is to just create a CDI bean, in which * case the policy will be invoked on every request. @@ -61,7 +61,7 @@ public SecurityIdentity getAugmentedIdentity() { /** * A context object that can be used to run blocking tasks *

- * Blocking identity providers should used this context object to run blocking tasks, to prevent excessive and + * Blocking identity providers should use this context object to run blocking tasks, to prevent excessive and * unnecessary delegation to thread pools */ interface AuthorizationRequestContext {