[DOCS] Fix name of porter stemming token filter

This commit is contained in:
Lee Hinman 2013-11-28 22:00:31 -07:00
parent 8f4c8e0d4a
commit fb4e903e35
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
[[analysis-porterstem-tokenfilter]]
=== Porter Stem Token Filter
A token filter of type `porterStem` that transforms the token stream as
A token filter of type `porter_stem` that transforms the token stream as
per the Porter stemming algorithm.
Note, the input to the stemming filter must already be in lower case, so
@ -11,5 +11,5 @@ Case Token Filter>> or
<<analysis-lowercase-tokenizer,Lower
Case Tokenizer>> farther down the Tokenizer chain in order for this to
work properly!. For example, when using custom analyzer, make sure the
`lowercase` filter comes before the `porterStem` filter in the list of
`lowercase` filter comes before the `porter_stem` filter in the list of
filters.