DATAMONGO-2118 - Fix typo in repositories reference documentation.

Original pull request: #611.
This commit is contained in:
Mona Mohamadinia
2018-09-24 10:29:51 +03:30
committed by Mark Paluch
parent aed9b4d0da
commit da4ccaa975

View File

@@ -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
}