Index: sdk/lib/async/stream.dart |
diff --git a/sdk/lib/async/stream.dart b/sdk/lib/async/stream.dart |
index 5de26b579e0abb372c8f763f59744ee4f783daab..1a45cd9bb5dd833974272d9ec4d5d28333a31114 100644 |
--- a/sdk/lib/async/stream.dart |
+++ b/sdk/lib/async/stream.dart |
@@ -560,12 +560,12 @@ abstract class Stream<T> { |
* |
* Returns a new stream where each element of this stream is replaced |
* by zero or more data events. |
- * The event values are proveded as an [Iterable] by a call to [convert] |
+ * The event values are provided as an [Iterable] by a call to [convert] |
* with the element as argument, and the elements of that iterable is |
* emitted in iteration order. |
- * If calling [convert] throws, or if iteration of the returned values throws, |
- * the error is emitted on the returned stream and iteration ends for that |
- * element of this stream. |
+ * If calling [convert] throws, or if the iteration of the returned values |
+ * throws, the error is emitted on the returned stream and iteration ends |
+ * for that element of this stream. |
* |
* Error events and the done event of this stream are forwarded directly |
* to the returned stream. |