From 4c073e929fcadcd4e2a9a4a83c0a34b237e51338 Mon Sep 17 00:00:00 2001 From: Jens Schauder Date: Tue, 4 Nov 2025 09:50:12 +0100 Subject: [PATCH] Fix typo on QueryAnnotation Javadoc. Closes #3395 --- .../org/springframework/data/annotation/QueryAnnotation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/annotation/QueryAnnotation.java b/src/main/java/org/springframework/data/annotation/QueryAnnotation.java index 7fa960332..b38e62c53 100644 --- a/src/main/java/org/springframework/data/annotation/QueryAnnotation.java +++ b/src/main/java/org/springframework/data/annotation/QueryAnnotation.java @@ -23,7 +23,7 @@ import java.lang.annotation.Target; import org.springframework.data.repository.Repository; /** - * Meta-Annotation to mark a store specific annotation as a query annotation. This allows generic special handing of + * Meta-Annotation to mark a store specific annotation as a query annotation. This allows generic special handling of * finder methods on {@link Repository} interfaces. * * @author Thomas Darimont