From 77c62ec180c94ffbc710e21be71e0f330642950c Mon Sep 17 00:00:00 2001 From: Jakub Wilk Date: Wed, 16 Oct 2024 13:00:34 +0200 Subject: [PATCH] README: fix syntax error in example expression --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eefbd17..93c8111 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Originally it's developed for filtering complex data structures e.g. Find cheap smartphones available for sale: ```python -category="smartphones" and price<300 and stock>0 +category=="smartphones" and price<300 and stock>0 ``` But also, it can be used for other expressions, e.g. arithmetical, like