Skip to content

Commit

Permalink
fix javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
jpountz committed Dec 3, 2024
1 parent 70838e3 commit aaaf6cd
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ public boolean equals(Object obj) {
/**
* A guess of the average number of simple operations for the initial seek and buffer refill per
* document for the positions of a term. See also {@link
* Lucene101PostingsReader.BlockImpactsPostingsEnum#nextPosition()}.
* Lucene101PostingsReader.BlockPostingsEnum#nextPosition()}.
*
* <p>Aside: Instead of being constant this could depend among others on {@link
* Lucene101PostingsFormat#BLOCK_SIZE}, {@link TermsEnum#docFreq()}, {@link
Expand All @@ -410,9 +410,8 @@ public boolean equals(Object obj) {
private static final int TERM_POSNS_SEEK_OPS_PER_DOC = 128;

/**
* Number of simple operations in {@link
* Lucene101PostingsReader.BlockImpactsPostingsEnum#nextPosition()} when no seek or buffer refill
* is done.
* Number of simple operations in {@link Lucene101PostingsReader.BlockPostingsEnum#nextPosition()}
* when no seek or buffer refill is done.
*/
private static final int TERM_OPS_PER_POS = 7;

Expand Down

0 comments on commit aaaf6cd

Please sign in to comment.