From a1dc452c4b87c4a812f578c1662e7ac11feca8dc Mon Sep 17 00:00:00 2001 From: mohsinh Date: Fri, 1 Feb 2013 15:59:28 +0000 Subject: [PATCH] Update README.md TYPO --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0dc6676d..3bb79219 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 Repositor { + public interface BookRepository extends Repository { //Equivalent Json Query will be "{ "bool" : { "must" :[{ "field" : {"name" : "?"} },{ "field" : {"price" : "?"} }]} }" List; findByNameAndPrice(String name, Integer price);