From 25bd6d4ba579f012de3152f8a668646f9e375c99 Mon Sep 17 00:00:00 2001 From: Patrik Mihalcin <5480557+pmihalcin@users.noreply.github.com> Date: Tue, 14 Sep 2021 17:22:48 +0200 Subject: [PATCH] Fix typo in RepositoryRestController's JavaDoc Fixes #2061. --- .../data/rest/webmvc/RepositoryRestController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-data-rest-webmvc/src/main/java/org/springframework/data/rest/webmvc/RepositoryRestController.java b/spring-data-rest-webmvc/src/main/java/org/springframework/data/rest/webmvc/RepositoryRestController.java index dd1868007..ac1419e94 100644 --- a/spring-data-rest-webmvc/src/main/java/org/springframework/data/rest/webmvc/RepositoryRestController.java +++ b/spring-data-rest-webmvc/src/main/java/org/springframework/data/rest/webmvc/RepositoryRestController.java @@ -30,7 +30,7 @@ import org.springframework.web.servlet.HandlerMapping; * them from standard Spring MVC handling. *
* Note, that this annotation should only be used by application controllers that map to URIs that are managed by Spring - * Data REST as the get handled by a special {@link HandlerMapping} implementation that applies additional + * Data REST as they get handled by a special {@link HandlerMapping} implementation that applies additional * functionality: *