Fix invalid JSON in masking filter documentation

The example JSON was missing a comma where one was expected.
This commit is contained in:
Markus Mäkelä
2018-05-10 22:26:32 +03:00
parent dbbd0e957a
commit 48aa76e1d4

View File

@ -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#"