Skip to content

Commit 5d1e026

Browse files
committed
fix 'in cases where'
1 parent 2d70db1 commit 5d1e026

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • firebase-firestore/src/main/java/com/google/firebase/firestore

firebase-firestore/src/main/java/com/google/firebase/firestore/Query.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1181,8 +1181,8 @@ private void validateHasExplicitOrderByForLimitToLast() {
11811181
* <em>without actually downloading the documents</em>.
11821182
*
11831183
* <p>Using the returned query to count the documents is efficient because only the final count,
1184-
* not the documents' data, is downloaded. The returned query can count the documents if the
1185-
* result set would be prohibitively large to download entirely (thousands of documents).
1184+
* not the documents' data, is downloaded. The returned query can count the documents in cases
1185+
* where the result set is prohibitively large to download entirely (thousands of documents).
11861186
*
11871187
* @return The {@code AggregateQuery} that counts the documents in the result set of this query.
11881188
*/
@@ -1197,7 +1197,7 @@ public AggregateQuery count() {
11971197
*
11981198
* <p>Using the returned query to perform aggregations is efficient because only the final
11991199
* aggregation values, not the documents' data, is downloaded. The returned query can perform
1200-
* aggregations of the documents if the result set would be prohibitively large to download
1200+
* aggregations of the documents in cases where the result set is prohibitively large to download
12011201
* entirely (thousands of documents).
12021202
*
12031203
* @return The {@code AggregateQuery} that performs aggregations on the documents in the result

0 commit comments

Comments
 (0)