Browse Source

DATACMNS-1651 - Fix typo in Javadoc.

Correct comment "subject" -> "predicate"

Original pull request: #427.
2.1.x
Shaun Chyxion 6 years ago committed by Mark Paluch
parent
commit
8813f41e5f
No known key found for this signature in database
GPG Key ID: 51A00FA751B91849
  1. 3
      src/main/java/org/springframework/data/repository/query/parser/PartTree.java

3
src/main/java/org/springframework/data/repository/query/parser/PartTree.java

@ -43,6 +43,7 @@ import org.springframework.util.StringUtils; @@ -43,6 +43,7 @@ import org.springframework.util.StringUtils;
* @author Thomas Darimont
* @author Christoph Strobl
* @author Mark Paluch
* @author Shaun Chyxion
*/
public class PartTree implements Streamable<OrPart> {
@ -70,7 +71,7 @@ public class PartTree implements Streamable<OrPart> { @@ -70,7 +71,7 @@ public class PartTree implements Streamable<OrPart> {
private final Subject subject;
/**
* The subject, for example "findDistinctUserByNameOrderByAge" would have the predicate "NameOrderByAge".
* The predicate, for example "findDistinctUserByNameOrderByAge" would have the predicate "NameOrderByAge".
*/
private final Predicate predicate;

Loading…
Cancel
Save