#28 - Fixed typo in readme.

This commit is contained in:
Daniel
2015-02-26 21:36:13 +01:00
committed by Oliver Gierke
parent e8776cadf1
commit e3dc8da3ab

View File

@@ -19,7 +19,7 @@ You can pull in this functionality to your repositories by simply additionally e
```java
interface PersonRepository extend RevisionRepository<Person, Long, Integer>, CrudRepository<Person, Long> {
interface PersonRepository extends RevisionRepository<Person, Long, Integer>, CrudRepository<Person, Long> {
// Your query methods go here
}