File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
firebase-firestore/src/main/java/com/google/firebase/firestore/core Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -276,8 +276,8 @@ private Pair<Value, Boolean> getAscendingBound(
276
276
}
277
277
}
278
278
279
- // If there is a bound, compare the values against the existing boundary to see if we can narrow
280
- // the scope.
279
+ // If there is an additional bound, compare the values against the existing range to see if we
280
+ // can narrow the scope.
281
281
if (bound != null ) {
282
282
for (int i = 0 ; i < orderBys .size (); ++i ) {
283
283
OrderBy orderBy = this .orderBys .get (i );
@@ -340,8 +340,8 @@ private Pair<Value, Boolean> getDescendingBound(
340
340
}
341
341
}
342
342
343
- // If there is a bound, compare the values against the existing boundary to see if we can narrow
344
- // the scope.
343
+ // If there is an additional bound, compare the values against the existing range to see if we
344
+ // can narrow the scope.
345
345
if (bound != null ) {
346
346
for (int i = 0 ; i < orderBys .size (); ++i ) {
347
347
OrderBy orderBy = this .orderBys .get (i );
You can’t perform that action at this time.
0 commit comments