@@ -556,22 +556,23 @@ NS_SWIFT_NAME(Query)
556
556
#pragma mark - Aggregation
557
557
558
558
/* *
559
- * A query that counts the documents in the result set of this query, without actually downloading
559
+ * A query that counts the documents in the result set of this query without actually downloading
560
560
* the documents.
561
561
*
562
- * Using this `AggregateQuery` to count the documents is efficient because only the final count,
563
- * not the documents' data, is downloaded. This allows for counting document collections that would
564
- * otherwise be too large to download (e.g. containing thousands of documents).
562
+ * 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 in cases where
564
+ * the result set is prohibitively large to download entirely ( thousands of documents).
565
565
*/
566
566
@property(nonatomic, readonly) FIRAggregateQuery *count;
567
567
568
568
/* *
569
569
* Creates and returns a new `AggregateQuery` that aggregates the documents in the result set
570
- * of this query, without actually downloading the documents.
570
+ * of this query without actually downloading the documents.
571
571
*
572
572
* Using an `AggregateQuery` to perform aggregations is efficient because only the final aggregation
573
- * values, not the documents' data, is downloaded. This allows for aggregating document collections
574
- * that would otherwise be too large to download (e.g. containing thousands of documents).
573
+ * values, not the documents' data, is downloaded. The returned `AggregateQuery` can perform
574
+ * aggregations of the documents in cases where the result set is prohibitively large to download
575
+ * entirely (thousands of documents).
575
576
*
576
577
* @param aggregateFields Specifies the aggregate operations to perform on the result set of this
577
578
* query.
0 commit comments