diff --git a/docs/discover/kuery.asciidoc b/docs/discover/kuery.asciidoc index af19622484485..d25d1a71c9738 100644 --- a/docs/discover/kuery.asciidoc +++ b/docs/discover/kuery.asciidoc @@ -17,7 +17,8 @@ Multiple search terms are separated by whitespace. `response:200 extension:php` will match documents where response matches 200 and extension matches php. -All terms must match by default. The language supports boolean logic with and/or operators. The above query is equivalent to `response:200 and extension:php`. +*All terms must match by default*. The language supports boolean logic with and/or operators. The above query is equivalent to `response:200 and extension:php`. +This is a departure from the Lucene query syntax where all terms are optional by default. We can make terms optional by using `or`.