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(firebase_database): removed duplicated words in dart doc comment #9620

Merged
merged 1 commit into from Sep 27, 2022
Merged
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
Expand Up @@ -92,7 +92,7 @@ class Query {
/// If only a value is provided, children with a value greater than
/// the specified value will be included in the query.
/// If a key is specified, then children must have a value greater than
/// or equal to the specified value and a a key name greater than
/// or equal to the specified value and a key name greater than
/// the specified key.
Query startAfter(Object? value, {String? key}) {
return Query._(
Expand All @@ -116,7 +116,7 @@ class Query {
/// The ending point is exclusive. If only a value is provided,
/// children with a value less than the specified value will be included in
/// the query. If a key is specified, then children must have a value lesss
/// than or equal to the specified value and a a key name less than the
/// than or equal to the specified value and a key name less than the
/// specified key.
Query endBefore(Object? value, {String? key}) {
return Query._(
Expand Down