| Index: sdk/lib/core/sequences.dart
|
| diff --git a/sdk/lib/core/sequences.dart b/sdk/lib/core/sequences.dart
|
| index 32a3b4088ef23cea008323f4662884c5b151a635..929f731adff63a9394baab91aa079f27a1629d99 100644
|
| --- a/sdk/lib/core/sequences.dart
|
| +++ b/sdk/lib/core/sequences.dart
|
| @@ -78,7 +78,7 @@ abstract class SequenceCollection<E> implements Collection<E>, Sequence<E> {
|
| return true;
|
| }
|
|
|
| - bool some(bool f(E element)) {
|
| + bool any(bool f(E element)) {
|
| for (int i = 0; i < this.length; i++) {
|
| if (f(this[i])) return true;
|
| }
|
|
|