From 48aa76e1d4f7c59ee2e858678383ff3719b350bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Thu, 10 May 2018 22:26:32 +0300 Subject: [PATCH] Fix invalid JSON in masking filter documentation The example JSON was missing a comma where one was expected. --- Documentation/Filters/Masking.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/Filters/Masking.md b/Documentation/Filters/Masking.md index 90df5f52b..d269601fb 100644 --- a/Documentation/Filters/Masking.md +++ b/Documentation/Filters/Masking.md @@ -231,8 +231,8 @@ The `match` value must be a valid pcre2 regular expression. ``` "replace": { - "column": "ssn" - "match": "(123)", + "column": "ssn", + "match": "(123)" }, "with": { "fill": "X#"