浏览代码

Fixed an invalid query

Closes #9682
Blake Niemyjski 10 年之前
父节点
当前提交
8cba6c3abb
共有 1 个文件被更改,包括 1 次插入1 次删除
  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
 To combine an upper and lower bound with the simplified syntax, you
 would need to join two clauses with an `AND` operator:
 would need to join two clauses with an `AND` operator:
 
 
-    age:(>=10 AND < 20)
+    age:(>=10 AND <20)
     age:(+>=10 +<20)
     age:(+>=10 +<20)
 
 
 ===================================================================
 ===================================================================