Browse Source

DATAMONGO-2118 - Fix typo in repositories reference documentation.

Original pull request: #611.
pull/662/head
Mona Mohamadinia 7 years ago committed by Mark Paluch
parent
commit
da4ccaa975
  1. 2
      src/main/asciidoc/reference/mongo-repositories.adoc

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

@ -34,7 +34,7 @@ Note that the domain type shown in the preceding example has a property named `i @@ -34,7 +34,7 @@ Note that the domain type shown in the preceding example has a property named `i
====
[source]
----
public interface PersonRepository extends PagingAndSortingRepository<Person, Long> {
public interface PersonRepository extends PagingAndSortingRepository<Person, String> {
// additional custom query methods go here
}

Loading…
Cancel
Save