Skip to content

Commit 0c4a0b0

Browse files
committed
fix 'in cases where'
1 parent bfdbc53 commit 0c4a0b0

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • Firestore/Source/Public/FirebaseFirestore

Firestore/Source/Public/FirebaseFirestore/FIRQuery.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -560,8 +560,8 @@ NS_SWIFT_NAME(Query)
560560
* the documents.
561561
*
562562
* Using this `AggregateQuery` to count the documents is efficient because only the final count, not
563-
* the documents' data, is downloaded. The `AggregateQuery` can count the documents if the result
564-
* set would be prohibitively large to download entirely (thousands of documents).
563+
* the documents' data, is downloaded. The `AggregateQuery` can count the documents in cases where
564+
* the result set is prohibitively large to download entirely (thousands of documents).
565565
*/
566566
@property(nonatomic, readonly) FIRAggregateQuery *count;
567567

@@ -571,8 +571,8 @@ NS_SWIFT_NAME(Query)
571571
*
572572
* Using an `AggregateQuery` to perform aggregations is efficient because only the final aggregation
573573
* values, not the documents' data, is downloaded. The returned `AggregateQuery` can perform
574-
* aggregations of the documents if the result set would be prohibitively large to download entirely
575-
* (thousands of documents).
574+
* aggregations of the documents in cases where the result set is prohibitively large to download
575+
* entirely (thousands of documents).
576576
*
577577
* @param aggregateFields Specifies the aggregate operations to perform on the result set of this
578578
* query.

0 commit comments

Comments
 (0)