DATACMNS-1651 - Fix typo in Javadoc.

Correct comment "subject" -> "predicate"

Original pull request: #427.
This commit is contained in:
Shaun Chyxion
2020-01-12 15:38:54 +08:00
committed by Mark Paluch
parent f1356fbb95
commit 09a7de07ad

View File

@@ -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> {
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;