From 592a31e7c444d15b05477c0ca3ad67921724070e Mon Sep 17 00:00:00 2001 From: Chris McKee Date: Mon, 28 Jan 2013 17:05:17 +0000 Subject: [PATCH] Update README.md HTML encoding not needed --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a1d56f6f..0dc6676d 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ The ElasticsearchCrudRepository extends PagingAndSortingRepository Extending ElasticsearchRepository for custom methods ```java - public interface BookRepository extends Repository<Book, String> { + public interface BookRepository extends Repositor { //Equivalent Json Query will be "{ "bool" : { "must" :[{ "field" : {"name" : "?"} },{ "field" : {"price" : "?"} }]} }" List; findByNameAndPrice(String name, Integer price);