diff --git a/README.md b/README.md
index 0b1e72a1..adcb6eda 100644
--- a/README.md
+++ b/README.md
@@ -180,7 +180,7 @@ Given the json
| $..book[2:] | All books from index 2 (inclusive) to last |
| $..book[?(@.isbn)] | All books with an ISBN number |
| $.store.book[?(@.price < 10)] | All books in store cheaper than 10 |
-| $..book[?(@.price <= $['expensive'])] | All books in store that are not "expensive" |
+| $..book[?(@.price <= $['expensive'])] | All books in store that are not "expensive" |
| $..book[?(@.author =~ /.*REES/i)] | All books matching regex (ignore case) |
| $..* | Give me every thing
| $..book.length() | The number of books |