From 77cdcf0187420cbd20142793cf7efbe4725abbe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20M=C3=BCnch?= Date: Sat, 19 Apr 2025 17:40:18 +0200 Subject: [PATCH] Fix: Typo in SchemaMappingInspector.getOrCreateReport()'s Javadoc comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexander Münch --- .../graphql/execution/SchemaMappingInspector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-graphql/src/main/java/org/springframework/graphql/execution/SchemaMappingInspector.java b/spring-graphql/src/main/java/org/springframework/graphql/execution/SchemaMappingInspector.java index e747aa37..99d53c22 100644 --- a/spring-graphql/src/main/java/org/springframework/graphql/execution/SchemaMappingInspector.java +++ b/spring-graphql/src/main/java/org/springframework/graphql/execution/SchemaMappingInspector.java @@ -124,7 +124,7 @@ private SchemaMappingInspector( /** * Perform an inspection and create a {@link SchemaReport}. - * The inspection is one once only, during the first call to this method. + * The inspection is done once only, during the first call to this method. */ public SchemaReport getOrCreateReport() { if (this.report == null) {