From 7cbddeca5a16d6c36d642abc34ab350ed2f33aee Mon Sep 17 00:00:00 2001 From: Jens Fischer Date: Fri, 17 Jan 2025 13:51:41 +0100 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c886929..7378336 100644 --- a/README.md +++ b/README.md @@ -169,9 +169,9 @@ The result of the evaluation is an `EvaluationResult` that indicates if and why | greater than | `gt` | comparison | Valid if `field` > `value`. | | greater or equal | `ge` | comparison | Valid if `field` >= `value`. | | in | `in` | comparison | Valid if `field` is in `value`. | -| nin | `nin` | comparison | Valid if `field` is not in `value`. | +| not in | `nin` | comparison | Valid if `field` is not in `value`. | | contains | `ct` | comparison | Valid if `field` contains `value`. | -| nct | `nct` | comparison | Valid if `field` does not contain `value`. | +| not contains | `nct` | comparison | Valid if `field` does not contain `value`. | ## Contributing