Fixed an invalid query

Closes #9682
This commit is contained in:
Blake Niemyjski 2015-02-12 15:41:21 -06:00 committed by Clinton Gormley
parent c597d8d56b
commit 8cba6c3abb
1 changed files with 1 additions and 1 deletions

View File

@ -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)
===================================================================