Skip to content

Commit f302b09

Browse files
committed
Query.java: minor tweaks to javadocs for count()
1 parent 429d710 commit f302b09

File tree

1 file changed

+2
-2
lines changed
  • firebase-firestore/src/main/java/com/google/firebase/firestore

1 file changed

+2
-2
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/Query.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1228,11 +1228,11 @@ private void validateHasExplicitOrderByForLimitToLast() {
12281228
*
12291229
* <p>The returned query, when executed, counts the documents in the result set of this query
12301230
* <em>without actually downloading the documents</em>. The count is performed on the server and
1231-
* only the resulting count is downloaded from the server.</p>
1231+
* only the resulting count is downloaded.
12321232
*
12331233
* <p>Using the returned query to count the documents is efficient because only the final count,
12341234
* not the documents' data, is downloaded. The returned query can even count the documents if the
1235-
* result set would be prohibitively large to download entirely (e.g. thousands of documents).</p>
1235+
* result set would be prohibitively large to download entirely (e.g. thousands of documents).
12361236
*
12371237
* @return a query that counts the documents in the result set of this query.
12381238
*/

0 commit comments

Comments
 (0)