Index: sdk/lib/collection/iterable.dart |
diff --git a/sdk/lib/collection/iterable.dart b/sdk/lib/collection/iterable.dart |
index 329068244596f292d2c552e5d94d87d93ebb717f..e89acc6f1ca91a1a4b5cafe0501da3d5e21c7757 100644 |
--- a/sdk/lib/collection/iterable.dart |
+++ b/sdk/lib/collection/iterable.dart |
@@ -103,16 +103,16 @@ abstract class IterableMixin<E> implements Iterable<E> { |
bool get isNotEmpty => !isEmpty; |
- Iterable<E> take(int n) { |
- return new TakeIterable<E>(this, n); |
+ Iterable<E> take(int count) { |
+ return new TakeIterable<E>(this, count); |
} |
Iterable<E> takeWhile(bool test(E value)) { |
return new TakeWhileIterable<E>(this, test); |
} |
- Iterable<E> skip(int n) { |
- return new SkipIterable<E>(this, n); |
+ Iterable<E> skip(int count) { |
+ return new SkipIterable<E>(this, count); |
} |
Iterable<E> skipWhile(bool test(E value)) { |