DATACMNS-1777 - Fix typo in Java example for TypedSort.
Original pull request: #461.
This commit is contained in:
@@ -448,7 +448,7 @@ For a more type-safe way of defining sort expressions, start with the type to de
|
||||
----
|
||||
TypedSort<Person> person = Sort.sort(Person.class);
|
||||
|
||||
TypedSort<Person> sort = person.by(Person::getFirstname).ascending()
|
||||
Sort sort = person.by(Person::getFirstname).ascending()
|
||||
.and(person.by(Person::getLastname).descending());
|
||||
----
|
||||
====
|
||||
|
||||
Reference in New Issue
Block a user