From a55474c51f337cbfa3ce5a077b9a7257ff81f818 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 26 Sep 2018 01:31:28 +0300 Subject: [PATCH] table align... Signed-off-by: Alex A. Naanou --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 89a7205..fff2bf7 100644 --- a/README.md +++ b/README.md @@ -579,7 +579,7 @@ At first glance they may seem to be equivalent but in reality they are quite dif Also note that the first pattern not equivalent to `AND(AT('x', 1), AT('y', 1))` as `AND(..)` requires that *both* `'x'` and `'y'` exist and contain `1` and first pattern will match if at least one of the keys exists and all the existing keys contain `1`. | Match | `{}` | `{x:1}`| `{x:1, y:2}` | `{x:1, y:1}` -|-------------------------------|-------|--------|--------------|------------| +|:------------------------------|:-----:|:------:|:------------:|:----------:| | `AT(OR('x', 'y'), 1)` |`false`| `true` | `false` | `true` | | `OR(AT('x', 1), AT('y', 1))` |`false`| `true` | `true` | `true` | | `AND(AT('x', 1), AT('y', 1))` |`false`| `false`| `false` | `true` |