- Fixed references to variables in javadoc. Patch submitted by Daniel Rall.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149659 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2002-01-28 11:39:02 +00:00
parent 7f8618e5de
commit 0d109d7705
1 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ public final class IndexWriter {
/** Constructs an IndexWriter for the index in <code>path</code>. Text will
be analyzed with <code>a</code>. If <code>create</code> is true, then a
new, empty index will be created in <code>d</code>, replacing the index
new, empty index will be created in <code>path</code>, replacing the index
already there, if any. */
public IndexWriter(String path, Analyzer a, boolean create)
throws IOException {
@ -102,7 +102,7 @@ public final class IndexWriter {
/** Constructs an IndexWriter for the index in <code>path</code>. Text will
be analyzed with <code>a</code>. If <code>create</code> is true, then a
new, empty index will be created in <code>d</code>, replacing the index
new, empty index will be created in <code>path</code>, replacing the index
already there, if any. */
public IndexWriter(File path, Analyzer a, boolean create)
throws IOException {