Skip to content

Commit

Permalink
Make comments HTML Javadoc friendly.
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Lee <austin@aryn.ai>
  • Loading branch information
austintlee authored and andrross committed Feb 14, 2024
1 parent be2b588 commit bdfdb0c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -341,9 +341,9 @@ public void testSimpleTerminateAfterCountRandomSize() throws Exception {
* If track_total_hits != true, but set to a value AND terminate_after is set:
* Again, due to the optimization, any count can be returned.
* Up to terminate_after, relation == EQUAL_TO.
* But if track_total_hits_up_to >= terminate_after, relation can be EQ _or_ GTE.
* But if track_total_hits_up_to &gte; terminate_after, relation can be EQ _or_ GTE.
* This ambiguity is due to the fact that totalHits == track_total_hits_up_to
* or totalHits > track_total_hits_up_to and SearchPhaseController sets totalHits = track_total_hits_up_to when returning results
* or totalHits &gt; track_total_hits_up_to and SearchPhaseController sets totalHits = track_total_hits_up_to when returning results
* in which case relation = GTE.
*
* @param size
Expand Down

0 comments on commit bdfdb0c

Please sign in to comment.