Index: sdk/lib/core/iterable.dart |
diff --git a/sdk/lib/core/iterable.dart b/sdk/lib/core/iterable.dart |
index a1967b734fa4765064d7254bd9ef08bd5fccdfd3..8bdda6ac779bd46b7bebda15019ea7b4c3589b53 100644 |
--- a/sdk/lib/core/iterable.dart |
+++ b/sdk/lib/core/iterable.dart |
@@ -146,7 +146,7 @@ abstract class Iterable<E> { |
* This method returns a view of the mapped elements. As long as the |
* returned [Iterable] is not iterated over, the supplied function [f] will |
* not be invoked. The transformed elements will not be cached. Iterating |
- * multiple times over the the returned [Iterable] will invoke the supplied |
+ * multiple times over the returned [Iterable] will invoke the supplied |
* function [f] multiple times on the same element. |
* |
* Methods on the returned iterable are allowed to omit calling `f` |