Skip to content

Commit db37760

Browse files
authored
Firestore: Small Count API documentation improvements (#923)
1 parent 6f2d09e commit db37760

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

firestore/src/AggregateSource.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public enum AggregateSource {
2424
/// considering any local state. That is, documents in the local cache are not
2525
/// taken into consideration, neither are local modifications not yet
2626
/// synchronized with the server. Previously-downloaded results, if any, are
27-
/// not used: every request using this source necessarily involves a round trip
27+
/// not used. Every request using this source necessarily involves a round trip
2828
/// to the server.
2929
///
3030
/// The AggregateQuery will fail if the server cannot be reached, such as if

firestore/src/Query.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ public FirebaseFirestore Firestore {
6161
///
6262
/// Using the returned query to count the documents is efficient because only
6363
/// the final count, not the documents' data, is downloaded. The returned query
64-
/// can even count the documents if the result set would be prohibitively large
65-
/// to download entirely (e.g. thousands of documents).
64+
/// can count the documents in cases where the result set is prohibitively large
65+
/// to download entirely (thousands of documents).
6666
/// </summary>
6767
/// <returns>
6868
/// An aggregate query that counts the documents in the result set of this query.

0 commit comments

Comments
 (0)