Docs: Fix simple_query_string example

The "&" is not part of the simple_query_string DSL

Closes #10563
This commit is contained in:
Benoit Delbosc 2015-04-13 10:56:21 +02:00 committed by Clinton Gormley
parent 48472940c7
commit 1b35854768
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ should be enabled. It is specified as a `|`-delimited string with the
--------------------------------------------------
{
"simple_query_string" : {
"query" : "foo | bar & baz*",
"query" : "foo | bar + baz*",
"flags" : "OR|AND|PREFIX"
}
}