Skip to content

Commit

Permalink
docs(cloud_firestore): Fix method name typo in code documentation (#8291
Browse files Browse the repository at this point in the history
)
  • Loading branch information
dutsky committed Mar 22, 2022
1 parent 945a53b commit 7b4e06d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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
Expand Up @@ -147,7 +147,7 @@ abstract class QueryPlatform extends PlatformInterface {
/// After a [FieldPath.documentId] order by call, you cannot add any more [orderBy]
/// 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.
QueryPlatform orderBy(List<List<dynamic>> orders) {
Expand All @@ -165,7 +165,7 @@ abstract class QueryPlatform extends PlatformInterface {
///
/// See also:
///
/// * [endAfterDocument] for a query that ends after a document.
/// * [endBeforeDocument] for a query that ends after a document.
/// * [startAtDocument] for a query that starts at a document.
/// * [endAtDocument] for a query that ends at a document.
QueryPlatform startAfterDocument(List<dynamic> orders, List<dynamic> values) {
Expand Down

0 comments on commit 7b4e06d

Please sign in to comment.