LUCENE-6177: fix typo

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1651901 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2015-01-14 23:52:16 +00:00
parent d23496f4da
commit 7dc14e4b47
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ import org.apache.lucene.util.Version;
* {@link TokenFilterFactory}, and {@link CharFilterFactory}.
* <p>You can create an instance of this Analyzer using the builder:
* <pre class="prettyprint">
* Analyzer ana = CustomAnalyzer.builder(Path.get(&quot;/path/to/config/dir&quot;))
* Analyzer ana = CustomAnalyzer.builder(Paths.get(&quot;/path/to/config/dir&quot;))
* .withTokenizer(&quot;standard&quot;)
* .addTokenFilter(&quot;standard&quot;)
* .addTokenFilter(&quot;lowercase&quot;)