Skip to content

Commit 72582ef

Browse files
author
Clinton Gormley
committed
Added an ID to the Syntax Extension h1 in the query-string docs
1 parent 90b7dcf commit 72582ef

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

guide/reference/query-dsl/query-string-query.textile

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ p. A query that uses a query parser in order to parse its content. Here is an ex
99

1010
<pre class="prettyprint lang-js">
1111
{
12-
"query_string" : {
13-
"default_field" : "content",
12+
"query_string" : {
13+
"default_field" : "content",
1414
"query" : "this AND that OR thus"
1515
}
1616
}
@@ -37,8 +37,8 @@ p. The @query_string@ query can also run against multiple fields. The idea of ru
3737

3838
<pre class="prettyprint lang-js">
3939
{
40-
"query_string" : {
41-
"fields" : ["content", "name^5"],
40+
"query_string" : {
41+
"fields" : ["content", "name^5"],
4242
"query" : "this AND that OR thus",
4343
"use_dis_max" : true
4444
}
@@ -55,15 +55,15 @@ p. The fields parameter can also include pattern based field names, allowing to
5555

5656
<pre class="prettyprint lang-js">
5757
{
58-
"query_string" : {
59-
"fields" : ["content", "name.*^5"],
58+
"query_string" : {
59+
"fields" : ["content", "name.*^5"],
6060
"query" : "this AND that OR thus",
6161
"use_dis_max" : true
6262
}
6363
}
6464
</pre>
6565

66-
h1. Syntax Extension
66+
h1(#Syntax_Extension). Syntax Extension
6767

6868
p. There are several syntax extensions to the Lucene query language.
6969

0 commit comments

Comments
 (0)