Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(cloud_firestore): Fix method name typo in code documentation #8291

Merged
merged 1 commit into from Mar 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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