From f84c255926c9d1b2ed4ff98871326fe2cfed5998 Mon Sep 17 00:00:00 2001 From: Markus Zimmermann Date: Thu, 1 Nov 2018 09:51:39 +0100 Subject: [PATCH] Document the new expression/comparison mutator --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 658893f..b5873a1 100644 --- a/README.md +++ b/README.md @@ -231,9 +231,10 @@ Examples for exec commands can be found in the [scripts](/scripts/exec) director ### Expression mutators -| Name | Description | -| :------------------ | :--------------------------------------------- | -| expression/remove | Searches for `&&` and \|\| operators and makes each term of the operator irrelevant by using `true` or `false` as replacements. | +| Name | Description | +| :-------------------- | :--------------------------------------------- | +| expression/comparison | Searches for comparison operators, such as `>` and `<=`, and replaces them with similar operators to catch off-by-one errors, e.g. `>` is replaced by `>=`. | +| expression/remove | Searches for `&&` and \|\| operators and makes each term of the operator irrelevant by using `true` or `false` as replacements. | ### Statement mutators