Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(360)

Unified Diff: sdk/lib/async/stream.dart

Issue 2917683002: Clean-up of Future documentation and small fix-ups. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sdk/lib/async/stream.dart
diff --git a/sdk/lib/async/stream.dart b/sdk/lib/async/stream.dart
index bf7840912d8846ff2cf2b2a7ad3d12d7b3bef68f..ffb65771a350887efe95a0d869e11273a7c06d49 100644
--- a/sdk/lib/async/stream.dart
+++ b/sdk/lib/async/stream.dart
@@ -630,12 +630,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.

Powered by Google App Engine
This is Rietveld 408576698