Browse Source

Fixed an invalid query

Closes #9682
Blake Niemyjski 10 years ago
parent
commit
8cba6c3abb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/reference/query-dsl/queries/query-string-syntax.asciidoc

+ 1 - 1
docs/reference/query-dsl/queries/query-string-syntax.asciidoc

@@ -172,7 +172,7 @@ Ranges with one side unbounded can use the following syntax:
 To combine an upper and lower bound with the simplified syntax, you
 would need to join two clauses with an `AND` operator:
 
-    age:(>=10 AND < 20)
+    age:(>=10 AND <20)
     age:(+>=10 +<20)
 
 ===================================================================