@@ -559,9 +559,9 @@ NS_SWIFT_NAME(Query)
559559 * 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 if the result
564+ * set would be prohibitively large to download entirely ( thousands of documents).
565565 */
566566@property(nonatomic, readonly) FIRAggregateQuery *count;
567567
@@ -570,8 +570,9 @@ NS_SWIFT_NAME(Query)
570570 * 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 if the result set would be prohibitively large to download entirely
575+ * (thousands of documents).
575576 *
576577 * @param aggregateFields Specifies the aggregate operations to perform on the result set of this
577578 * query.
0 commit comments