Skip to content

Commit

Permalink
docs: removed duplicate words in dart doc comment (#9620)
Browse files Browse the repository at this point in the history
  • Loading branch information
OutdatedGuy committed Sep 27, 2022
1 parent 927c1ca commit cb980a6
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit cb980a6

Please sign in to comment.