From 9fc98a2d42609e634850a96ecc3a836a80ee79e9 Mon Sep 17 00:00:00 2001 From: jochenberger Date: Tue, 24 Nov 2015 16:41:56 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bfbc4c3d..e2661b8c 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ The function output is dictated by the function itself. Filter Operators ----------------- -Filters are logical expressions used to filter arrays. A typical filter would be `[?(@.age > 18)]` where `@` represents the current item being processed. More complex filters can be created with logical operators `&&` and `||`. String literals must be enclosed by single quotes `[?(@.color == 'blue')]`. +Filters are logical expressions used to filter arrays. A typical filter would be `[?(@.age > 18)]` where `@` represents the current item being processed. More complex filters can be created with logical operators `&&` and `||`. String literals must be enclosed by single or double quotes (`[?(@.color == 'blue')]` or `[?(@.color == "blue")]`). | Operator | Description | | :----------------------- | :---------------------------------------------------------------- |