Skip to content

Commit

Permalink
fixed typos (whwere -> where) (dart-archive/characters#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
suragch authored Mar 12, 2021
1 parent 728d890 commit f1e6076
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/characters/lib/src/characters.dart
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ abstract class Characters implements Iterable<String> {
/// Eagerly selects a trailing sequence of characters.
///
/// Checks each character, from first to last, against [test],
/// until one is found whwere [test] returns `false`.
/// until one is found where [test] returns `false`.
/// The characters starting with the first one
/// where [test] returns `false`, are included in the result.
///
Expand All @@ -174,7 +174,7 @@ abstract class Characters implements Iterable<String> {
/// Eagerly selects a leading sequence of characters.
///
/// Checks each character, from first to last, against [test],
/// until one is found whwere [test] returns `false`.
/// until one is found where [test] returns `false`.
/// The characters up to, but not including, the first one
/// where [test] returns `false` are included in the result.
///
Expand All @@ -186,7 +186,7 @@ abstract class Characters implements Iterable<String> {
/// Eagerly selects a leading sequence of characters.
///
/// Checks each character, from last to first, against [test],
/// until one is found whwere [test] returns `false`.
/// until one is found where [test] returns `false`.
/// The characters up to and including the one with the latest index
/// where [test] returns `false` are included in the result.
///
Expand All @@ -197,7 +197,7 @@ abstract class Characters implements Iterable<String> {
/// Eagerly selects a trailing sequence of characters.
///
/// Checks each character, from last to first, against [test],
/// until one is found whwere [test] returns `false`.
/// until one is found where [test] returns `false`.
/// The characters after the one with the latest index where
/// [test] returns `false` are included in the result.
///
Expand Down

0 comments on commit f1e6076

Please sign in to comment.