Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ enum class AggregateSource {
* considering any local state. That is, documents in the local cache are not
* taken into consideration, neither are local modifications not yet
* synchronized with the server. Previously-downloaded results, if any, are
* not used: every request using this source necessarily involves a round trip
* not used. Every request using this source necessarily involves a round trip
* to the server.
*
* The AggregateQuery will fail if the server cannot be reached, such as if
Expand Down
4 changes: 2 additions & 2 deletions firestore/src/include/firebase/firestore/query.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ class Query {
*
* Using the returned query to count the documents is efficient because only
* the final count, not the documents' data, is downloaded. The returned query
* can even count the documents if the result set would be prohibitively large
* to download entirely (e.g. thousands of documents).
* can count the documents in cases where the result set is prohibitively
* large to download entirely (thousands of documents).
*
* @return An aggregate query that counts the documents in the result set of
* this query.
Expand Down