Browse Source

DATAMONGO-2118 - Polishing.

Fix typo in reactive repositories reference documentation.

Original pull request: #611.
pull/616/head
Mark Paluch 7 years ago
parent
commit
0c8f176e70
  1. 2
      src/main/asciidoc/reference/reactive-mongo-repositories.adoc

2
src/main/asciidoc/reference/reactive-mongo-repositories.adoc

@ -47,7 +47,7 @@ Note that the entity defined in the preceding example has a property named `id` @@ -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>

Loading…
Cancel
Save