Skip to content

Commit f0a0f1d

Browse files
Comment
1 parent 1f4a2b3 commit f0a0f1d

File tree

1 file changed

+4
-4
lines changed
  • firebase-firestore/src/main/java/com/google/firebase/firestore/core

1 file changed

+4
-4
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/core/Target.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,8 @@ private Pair<Value, Boolean> getAscendingBound(
276276
}
277277
}
278278

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.
281281
if (bound != null) {
282282
for (int i = 0; i < orderBys.size(); ++i) {
283283
OrderBy orderBy = this.orderBys.get(i);
@@ -340,8 +340,8 @@ private Pair<Value, Boolean> getDescendingBound(
340340
}
341341
}
342342

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.
345345
if (bound != null) {
346346
for (int i = 0; i < orderBys.size(); ++i) {
347347
OrderBy orderBy = this.orderBys.get(i);

0 commit comments

Comments
 (0)