Fix typo in PostingsReaderBase docstring (#948)

* remove extra PostingsEnum from docstring
* add ImpactsEnum to docstring
This commit is contained in:
Vigya Sharma 2022-08-09 16:20:51 -07:00 committed by GitHub
parent d7fd48c950
commit 59a0917e25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ import org.apache.lucene.store.IndexInput;
/**
* The core terms dictionaries (BlockTermsReader, BlockTreeTermsReader) interact with a single
* instance of this class to manage creation of {@link org.apache.lucene.index.PostingsEnum} and
* {@link org.apache.lucene.index.PostingsEnum} instances. It provides an IndexInput (termsIn) where
* {@link org.apache.lucene.index.ImpactsEnum} instances. It provides an IndexInput (termsIn) where
* this class may read any previously stored data that it had written in its corresponding {@link
* PostingsWriterBase} at indexing time.
*