Skip to content

Commit

Permalink
docs(cloud_firestore): fix method name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dutsky committed Mar 16, 2022
1 parent 945a53b commit 0d08eed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cloud_firestore/cloud_firestore/lib/src/query.dart
Expand Up @@ -94,7 +94,7 @@ abstract class Query<T extends Object?> {
/// calls.
///
/// Furthermore, you may not use [orderBy] on the [FieldPath.documentId] [field] when
/// using [startAfterDocument], [startAtDocument], [endAfterDocument],
/// using [startAfterDocument], [startAtDocument], [endBeforeDocument],
/// or [endAtDocument] because the order by clause on the document id
/// is added by these methods implicitly.
Query<T> orderBy(Object field, {bool descending = false});
Expand Down Expand Up @@ -432,7 +432,7 @@ class _JsonQuery implements Query<Map<String, dynamic>> {
/// calls.
///
/// Furthermore, you may not use [orderBy] on the [FieldPath.documentId] [field] when
/// using [startAfterDocument], [startAtDocument], [endAfterDocument],
/// using [startAfterDocument], [startAtDocument], [endBeforeDocument],
/// or [endAtDocument] because the order by clause on the document id
/// is added by these methods implicitly.
@override
Expand Down

0 comments on commit 0d08eed

Please sign in to comment.