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

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

Issue 1517843002: Fix typo in stream.dart. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/async/stream.dart
diff --git a/sdk/lib/async/stream.dart b/sdk/lib/async/stream.dart
index f6b235a9a61f52f75ef10668a75fdedfe87d1269..dff5b18f984c28548898c94bc96448666331c02a 100644
--- a/sdk/lib/async/stream.dart
+++ b/sdk/lib/async/stream.dart
@@ -1493,7 +1493,7 @@ abstract class StreamConsumer<S> {
Future addStream(Stream<S> stream);
/**
- * Tells the consumer that no futher streams will be added.
+ * Tells the consumer that no further streams will be added.
*
* This allows the consumer to complete any remaining work and release
* resources that are no longer needed
@@ -1527,7 +1527,7 @@ abstract class StreamConsumer<S> {
*/
abstract class StreamSink<S> implements EventSink<S>, StreamConsumer<S> {
/**
- * Tells the stream sink that no futher streams will be added.
+ * Tells the stream sink that no further streams will be added.
*
* This allows the stream sink to complete any remaining work and release
* resources that are no longer needed
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698