DATACMNS-1291 - Fix method signature in repository projection documentation.

Original pull request: #285.
This commit is contained in:
Chengyuan Zhao
2018-04-13 09:39:27 +02:00
committed by Mark Paluch
parent 0dfcfe4186
commit 39b82e4ce6

View File

@@ -260,7 +260,7 @@ To apply dynamic projections, use a query method such as the one shown in the fo
----
interface PersonRepository extends Repository<Person, UUID> {
Collection<T> findByLastname(String lastname, Class<T> type);
<T> Collection<T> findByLastname(String lastname, Class<T> type);
}
----
====