From ed1edb4964427f335a9d41e8e87a3df80a1568d4 Mon Sep 17 00:00:00 2001 From: James Rodewig Date: Mon, 30 Mar 2020 10:43:18 -0400 Subject: [PATCH] [DOCS] Add missing word to keyword marker token filter docs --- .../tokenfilters/keyword-marker-tokenfilter.asciidoc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/reference/analysis/tokenfilters/keyword-marker-tokenfilter.asciidoc b/docs/reference/analysis/tokenfilters/keyword-marker-tokenfilter.asciidoc index a3d6b82625c..6b93d0657fb 100644 --- a/docs/reference/analysis/tokenfilters/keyword-marker-tokenfilter.asciidoc +++ b/docs/reference/analysis/tokenfilters/keyword-marker-tokenfilter.asciidoc @@ -6,8 +6,9 @@ Marks specified tokens as keywords, which are not stemmed. -The `keyword_marker` assigns specified tokens a `keyword` attribute of `true`. -Stemmer token filters, such as <> or +The `keyword_marker` filter assigns specified tokens a `keyword` attribute of +`true`. Stemmer token filters, such as +<> or <>, skip tokens with a `keyword` attribute of `true`. @@ -155,7 +156,7 @@ but `jumping` is not stemmed. To see the `keyword` attribute for these tokens, add the following arguments to the analyze API request: -* `explain`: `true` +* `explain`: `true` * `attributes`: `keyword` [source,console] @@ -176,7 +177,7 @@ GET /_analyze } ---- -The API returns the following response. Note the `jumping` token has a +The API returns the following response. Note the `jumping` token has a `keyword` attribute of `true`. [source,console-result]