@@ -556,22 +556,23 @@ NS_SWIFT_NAME(Query)
556556#pragma mark - Aggregation
557557
558558/* *
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
560560 * the documents.
561561 *
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).
565565 */
566566@property(nonatomic, readonly) FIRAggregateQuery *count;
567567
568568/* *
569569 * 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.
571571 *
572572 * 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).
575576 *
576577 * @param aggregateFields Specifies the aggregate operations to perform on the result set of this
577578 * query.
0 commit comments