diff --git a/docs/reference/query-dsl/query-string-query.asciidoc b/docs/reference/query-dsl/query-string-query.asciidoc index a36289722a72..52a2992a90d2 100644 --- a/docs/reference/query-dsl/query-string-query.asciidoc +++ b/docs/reference/query-dsl/query-string-query.asciidoc @@ -142,8 +142,8 @@ You can use this parameter query to search across multiple fields. See -- `fuzziness`:: -(Optional, string) Maximum edit distance allowed for matching. See <> -for valid values and more information. +(Optional, string) Maximum edit distance allowed for fuzzy matching. For fuzzy +syntax, see <>. `fuzzy_max_expansions`:: (Optional, integer) Maximum number of terms to which the query expands for fuzzy diff --git a/docs/reference/query-dsl/query-string-syntax.asciidoc b/docs/reference/query-dsl/query-string-syntax.asciidoc index 17d53365e31e..6be4538dafd9 100644 --- a/docs/reference/query-dsl/query-string-syntax.asciidoc +++ b/docs/reference/query-dsl/query-string-syntax.asciidoc @@ -116,13 +116,15 @@ Use with caution! [[query-string-fuzziness]] ====== Fuzziness -We can search for terms that are -similar to, but not exactly like our search terms, using the ``fuzzy'' -operator: +You can run <> using the `~` operator: quikc~ brwn~ foks~ -This uses the +For these queries, the query string is <>. If +present, only certain filters from the analyzer are applied. For a list of +applicable filters, see <>. + +The query uses the {wikipedia}/Damerau-Levenshtein_distance[Damerau-Levenshtein distance] to find all terms with a maximum of two changes, where a change is the insertion, deletion