From 1eea884d3752f209ed651feffe3a4e0b9a5d47e8 Mon Sep 17 00:00:00 2001 From: John Gesimondo Date: Sat, 9 May 2020 10:30:10 -0700 Subject: [PATCH] DATACMNS-1713 - Fix typo in doc. Original pull request: #442. --- .../data/repository/core/support/RepositoryFactorySupport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java b/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java index d0b23b192..667fc00ef 100644 --- a/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java +++ b/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java @@ -74,7 +74,7 @@ import org.springframework.util.ConcurrentReferenceHashMap.ReferenceType; /** * Factory bean to create instances of a given repository interface. Creates a proxy implementing the configured - * repository interface and apply an advice handing the control to the {@code QueryExecuterMethodInterceptor}. Query + * repository interface and apply an advice handing the control to the {@code QueryExecutorMethodInterceptor}. Query * detection strategy can be configured by setting {@link QueryLookupStrategy.Key}. * * @author Oliver Gierke