Browse Source

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

Original pull request: #285.
pull/303/head
Chengyuan Zhao 8 years ago committed by Mark Paluch
parent
commit
e1ec4bc17b
  1. 2
      src/main/asciidoc/repository-projections.adoc

2
src/main/asciidoc/repository-projections.adoc

@ -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> { interface PersonRepository extends Repository<Person, UUID> {
Collection<T> findByLastname(String lastname, Class<T> type); <T> Collection<T> findByLastname(String lastname, Class<T> type);
} }
---- ----
==== ====

Loading…
Cancel
Save