From 674e6fb6b72516a3e27e24e7c93e6d32ed372ec9 Mon Sep 17 00:00:00 2001 From: zkozina Date: Sat, 28 Feb 2026 22:43:20 +0000 Subject: [PATCH] Small typo fixed --- .../graphql/analysis/MaxQueryComplexityInstrumentation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/graphql/analysis/MaxQueryComplexityInstrumentation.java b/src/main/java/graphql/analysis/MaxQueryComplexityInstrumentation.java index 3a9f94f166..669f147aa3 100644 --- a/src/main/java/graphql/analysis/MaxQueryComplexityInstrumentation.java +++ b/src/main/java/graphql/analysis/MaxQueryComplexityInstrumentation.java @@ -26,7 +26,7 @@ * Prevents execution if the query complexity is greater than the specified maxComplexity. *

* Use the {@code Function} parameter to supply a function to perform a custom action when the max complexity - * is exceeded. If the function returns {@code true} a {@link AbortExecutionException} is thrown. + * is exceeded. If the function returns {@code true} an {@link AbortExecutionException} is thrown. */ @PublicApi @NullMarked