javadoc typo fixes

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1348974 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2012-06-11 19:14:58 +00:00
parent d8be50b46d
commit f5821bc977
1 changed files with 2 additions and 2 deletions

View File

@ -135,10 +135,10 @@ public final class FieldTypePluginLoader
return fieldTypes.put( name, plugin );
}
// The point here is that, if no multitermanalyzer was specified in the schema file, do one of several things:
// The point here is that, if no multiterm analyzer was specified in the schema file, do one of several things:
// 1> If legacyMultiTerm == false, assemble a new analyzer composed of all of the charfilters,
// lowercase filters and asciifoldingfilter.
// 2> If letacyMultiTerm == true just construct the analyzer from a KeywordTokenizer. That should mimic current behavior.
// 2> If legacyMultiTerm == true just construct the analyzer from a KeywordTokenizer. That should mimic current behavior.
// Do the same if they've specified that the old behavior is required (legacyMultiTerm="true")
private Analyzer constructMultiTermAnalyzer(Analyzer queryAnalyzer) {