Index: sdk/lib/core/iterable.dart |
diff --git a/sdk/lib/core/iterable.dart b/sdk/lib/core/iterable.dart |
index 18ec4d131828f50de12f5ccd7b428534d0e5aa73..65ffe0177a000cfb75f105a7e5f1c1f51b4db057 100644 |
--- a/sdk/lib/core/iterable.dart |
+++ b/sdk/lib/core/iterable.dart |
@@ -192,8 +192,8 @@ abstract class Iterable<E> { |
* print(duplicated); // => [1, 1, 2, 2, 3, 3] |
* |
*/ |
- Iterable<T> expand<T>(Iterable<T> f(E element)) => |
- new ExpandIterable<E, T>(this, f); |
+ Iterable<T> |
+ expand<T>(Iterable<T> f(E element)) => new ExpandIterable<E, T>(this, f); |
/** |
* Returns true if the collection contains an element equal to [element]. |