@@ -934,7 +934,8 @@ public Query where(com.google.cloud.firestore.Filter filter) {
934
934
+ "startAfter(), endBefore() or endAt()." );
935
935
FilterInternal parsedFilter = parseFilter (filter );
936
936
if (parsedFilter .getFilters ().isEmpty ()) {
937
- // Return the existing query if not adding any more filters (e.g. an empty composite filter).
937
+ // Return the existing query if not adding any more filters (for example an empty composite
938
+ // filter).
938
939
return this ;
939
940
}
940
941
Builder newOptions = options .toBuilder ();
@@ -1923,7 +1924,8 @@ boolean shouldRetryQuery(
1923
1924
*
1924
1925
* <p>Using the returned query to count the documents is efficient because only the final count,
1925
1926
* not the documents' data, is downloaded. The returned query can even count the documents if the
1926
- * result set would be prohibitively large to download entirely (e.g. thousands of documents).
1927
+ * result set would be prohibitively large to download entirely (for example thousands of
1928
+ * documents).
1927
1929
*
1928
1930
* @return a query that counts the documents in the result set of this query.
1929
1931
*/
@@ -1938,7 +1940,7 @@ public AggregateQuery count() {
1938
1940
*
1939
1941
* <p>Using this function to perform aggregations is efficient because only the final aggregation
1940
1942
* values, not the documents' data, is downloaded. This function can even perform aggregations of
1941
- * the documents if the result set would be prohibitively large to download entirely (e.g.
1943
+ * the documents if the result set would be prohibitively large to download entirely (for example
1942
1944
* thousands of documents).
1943
1945
*
1944
1946
* @return an {@link AggregateQuery} that performs aggregations on the documents in the result set
0 commit comments