From b85e06765079a0946e4057bafbb3e153ea93718f Mon Sep 17 00:00:00 2001 From: kallestenflo Date: Mon, 22 Sep 2014 16:10:27 +0200 Subject: [PATCH] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b2b3947c..cc0500e8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -JSONPath +JSONPath (1.0.0) ======== **A Java DSL for reading JSON documents.** @@ -194,7 +194,7 @@ import static com.jayway.jsonpath.Filter.filter; ... ... -Filter cheapFictionFilter = where(where("category").is("fiction").and("price").lte(10D)); +Filter cheapFictionFilter = filter(where("category").is("fiction").and("price").lte(10D)); List> books = parse(json).read("$.store.book[?]", cheapFictionFilter); @@ -239,15 +239,15 @@ Configuration.setDefaults(new Configuration.Defaults() { return jsonProvider; } - @Override - public Set