summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2022-01-25 00:22:45 +0530
committerAkshay Nair <phenax5@gmail.com>2022-01-25 00:22:45 +0530
commitdd3688f166d660df36a6ffda9fda755877ed2665 (patch)
treec54a047a1c95657fea9bf75cec604884e1729674 /README.md
parent4c478c76679a35da0819fde112a7fdc680f28863 (diff)
downloadelxr-dd3688f166d660df36a6ffda9fda755877ed2665.tar.gz
elxr-dd3688f166d660df36a6ffda9fda755877ed2665.zip
docs: readme update
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3ece065..aaf9190 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@ Whitespaces are ignored (except within literals)
* `a,b` => match `a` on current item followed by `b` on the next item (**sequence**)
* `[name \s\T]` => match **property** of object (example matches items with property `name` as non-empty string)
* `> n` | `>= n` | `< n` | `<= n` => **Comparison** with literal number [TODO]
-* `/pat/` => Test string values against **regex** [TODO]
+* `/pat/` => Test string values against **regex**
* `"foobar"` => String literal (example matches the string `foobar`)
* `-2.05` => Number literal (example matches the number `-2.05`)
* `true` => Boolean literal (example matches the value `true`)
@@ -35,7 +35,6 @@ Whitespaces are ignored (except within literals)
- [ ] `match` function
- [ ] Named capture groups
- [ ] Non-capturing groups
- - [ ] Regular expressions for string items
- [ ] Nested list evaluation
- [ ] Number comarison