DATACMNS-1777 - Fix typo in Java example for TypedSort.

Original pull request: #461.
This commit is contained in:
DK Lee
2020-07-27 23:28:17 +09:00
committed by Mark Paluch
parent 0ca3cc72e7
commit 0f3a4126bd

View File

@@ -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());
----
====