Index: sdk/lib/core/iterable.dart |
diff --git a/sdk/lib/core/iterable.dart b/sdk/lib/core/iterable.dart |
index 3de39bcdc989ef7f2276634bb611b2d33c891c5a..081c7cb6a1ae9b1252dd2c95046354f298925ef6 100644 |
--- a/sdk/lib/core/iterable.dart |
+++ b/sdk/lib/core/iterable.dart |
@@ -392,8 +392,8 @@ abstract class Iterable<E> { |
* |
* The `count` must not be negative. |
*/ |
- Iterable<E> take(int n) { |
- return new TakeIterable<E>(this, n); |
+ Iterable<E> take(int count) { |
+ return new TakeIterable<E>(this, count); |
} |
/** |