Searching: Better wording for what's going on in combineEvents().

pull/21833/head
Damir Jelić 2020-06-10 10:44:38 +02:00
parent 4c361bfeb7
commit 67cad2807b
1 changed files with 4 additions and 4 deletions

View File

@ -247,10 +247,10 @@ function combineEventSources(previousSearchResult, response, a, b) {
* need keep on looking for the oldest event. We are implementing a variation of
* a sliding window.
*
* The event sources are here represented as two sorted lists where the lowest
* number represents the newest event. The two sorted lists need to be merged
* so they can be shown as one search result. We first fetch SEARCH_LIMIT events
* from both sources.
* The event sources are here represented as two sorted lists where the smallest
* number represents the newest event. The two lists need to be merged in a way
* that preserves the sorted property so they can be shown as one search result.
* We first fetch SEARCH_LIMIT events from both sources.
*
* If we set SEARCH_LIMIT to 3:
*