From 3704b5599200210e3fc7badff7d44a6077a77e59 Mon Sep 17 00:00:00 2001 From: hartraft Date: Thu, 13 Feb 2020 01:55:36 +0100 Subject: [PATCH] DATAJPA-1691 - Javadoc spelling errors. Original pull request: #413. --- .../java/org/springframework/data/jpa/repository/Query.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/springframework/data/jpa/repository/Query.java b/src/main/java/org/springframework/data/jpa/repository/Query.java index 8ecc7f366..9b5e82f8b 100644 --- a/src/main/java/org/springframework/data/jpa/repository/Query.java +++ b/src/main/java/org/springframework/data/jpa/repository/Query.java @@ -45,13 +45,13 @@ public @interface Query { /** * Defines a special count query that shall be used for pagination queries to lookup the total number of elements for - * a page. If non is configured we will derive the count query from the original query or {@link #countProjection()} query if any. + * a page. If none is configured we will derive the count query from the original query or {@link #countProjection()} query if any. */ String countQuery() default ""; /** * Defines the projection part of the count query that is generated for pagination. If neither {@link #countQuery()} - * not {@link #countProjection()} is configured we will derive the count query from the original query. + * nor {@link #countProjection()} is configured we will derive the count query from the original query. * * @return * @since 1.6