From 1c6ee93d9e4f4ec96e97552240f25e39e78dd624 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Hu=CC=88gelmeyer?= Date: Mon, 4 Jun 2012 11:46:48 +0200 Subject: [PATCH] #1 - Fixed example in readme.md. --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 1a8275a..cc59b5b 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ # Spring Data Envers # -This project is an extension of the [Spring Data JPA](http://github.com/SpringSource/spring-data-jpa) project to allow access to entity revisions managed by Hibernate Envers. The sources mostly originate from a contribution of Philip Hügelmeyer [@hygl](https://github.com/hygl). +This project is an extension of the [Spring Data JPA](http://github.com/SpringSource/spring-data-jpa) project to allow access to entity revisions managed by Hibernate Envers. The sources mostly originate from a contribution of Philipp Hügelmeyer [@hygl](https://github.com/hygl). The core feature of the module consists of an implementation of the `RevisionRepository` of Spring Data Commons. @@ -19,7 +19,7 @@ You can pull in this functionality to your repositories by simply additionally e ```java -interface PersonRepository extend RevisionRepository, CrudRepository { +interface PersonRepository extend RevisionRepository, CrudRepository { // Your query methods go here }