DATAMONGO-2118 - Polishing.

Fix typo in reactive repositories reference documentation.

Original pull request: #611.
This commit is contained in:
Mark Paluch
2018-10-26 10:07:42 +02:00
parent c900ceb0d9
commit 0c8f176e70

View File

@@ -47,7 +47,7 @@ Note that the entity defined in the preceding example has a property named `id`
====
[source]
----
public interface ReactivePersonRepository extends ReactiveSortingRepository<Person, Long> {
public interface ReactivePersonRepository extends ReactiveSortingRepository<Person, String> {
Flux<Person> findByFirstname(String firstname); <1>