Resolve wording inconsistency

AND and OR filter docs talk about different targets for the operators. I
believe that both should be described in terms of modifying other 'filters'.
I also added articles for easier (human) parsing. This fixes #4762

Closes #7165
This commit is contained in:
Konrad Feldmeier 2014-08-05 15:08:04 +02:00 committed by Clinton Gormley
parent 1d01b2ac6a
commit 657b954528
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
[[query-dsl-and-filter]]
=== And Filter
A filter that matches documents using `AND` boolean operator on other
A filter that matches documents using the `AND` boolean operator on other
filters. Can be placed within queries that accept a filter.
[source,js]

View File

@ -1,8 +1,8 @@
[[query-dsl-or-filter]]
=== Or Filter
A filter that matches documents using `OR` boolean operator on other
queries. Can be placed within queries that accept a filter.
A filter that matches documents using the `OR` boolean operator on other
filters. Can be placed within queries that accept a filter.
[source,js]
--------------------------------------------------