From 3dda07e2f81b8aa76387c5e98cc2f81831b3ca6a Mon Sep 17 00:00:00 2001 From: ron190 Date: Wed, 11 Jul 2018 15:25:21 +0200 Subject: [PATCH] Fix missing space --- 054_Query_DSL/70_Important_clauses.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/054_Query_DSL/70_Important_clauses.asciidoc b/054_Query_DSL/70_Important_clauses.asciidoc index 0cf6ea486..efa7def97 100644 --- a/054_Query_DSL/70_Important_clauses.asciidoc +++ b/054_Query_DSL/70_Important_clauses.asciidoc @@ -145,7 +145,7 @@ for exact matches (including differences in case, accents, spaces, etc). The `exists` and `missing` queries are ((("exists query")))((("missing query")))used to find documents in which the specified field either has one or more values (`exists`) or doesn't have any values (`missing`). It is similar in nature to `IS_NULL` (`missing`) and `NOT -IS_NULL` (`exists`)in SQL: +IS_NULL` (`exists`) in SQL: [source,js] --------------------------------------------------