[Docs] Fix fuzziness example in match-query.asciidoc (#55715)

The example looks the same as in the previous section although it should use the
"fuzziness" parameter. This seems to be okay on 6.8 and master and was probably
only forgotten to port to 7.x branches.
This commit is contained in:
Christoph Büscher 2020-04-24 16:21:40 +02:00 committed by GitHub
parent 210b7f1b76
commit f95a741ad3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -222,8 +222,8 @@ GET /_search
"query": {
"match" : {
"message" : {
"query" : "this is a test",
"operator" : "and"
"query" : "this is a testt",
"fuzziness": "AUTO"
}
}
}