From daa5a8da2429e15ab102d6c803572e460b39bf93 Mon Sep 17 00:00:00 2001 From: Jakob Reiter Date: Wed, 8 Jul 2015 17:47:04 +0200 Subject: [PATCH] Fixed typos in examples on common-terms-query.asciidoc. JSON was invalid before --- docs/reference/query-dsl/common-terms-query.asciidoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/reference/query-dsl/common-terms-query.asciidoc b/docs/reference/query-dsl/common-terms-query.asciidoc index b9aee04e401..aeecf39e6f7 100644 --- a/docs/reference/query-dsl/common-terms-query.asciidoc +++ b/docs/reference/query-dsl/common-terms-query.asciidoc @@ -95,7 +95,7 @@ all terms required: "body": { "query": "nelly the elephant as a cartoon", "cutoff_frequency": 0.001, - "low_freq_operator" "and" + "low_freq_operator": "and" } } } @@ -113,8 +113,8 @@ which is roughly equivalent to: { "term": { "body": "cartoon"}} ], "should": [ - { "term": { "body": "the"}} - { "term": { "body": "as"}} + { "term": { "body": "the"}}, + { "term": { "body": "as"}}, { "term": { "body": "a"}} ] } @@ -156,8 +156,8 @@ which is roughly equivalent to: } }, "should": [ - { "term": { "body": "the"}} - { "term": { "body": "as"}} + { "term": { "body": "the"}}, + { "term": { "body": "as"}}, { "term": { "body": "a"}} ] }