Index: sdk/lib/async/async.dart |
diff --git a/sdk/lib/async/async.dart b/sdk/lib/async/async.dart |
index 7de40e683c786f67475647c26cba7f3cd280fe62..3ab8d5774067e3968f8522e9d748413f5c81b684 100644 |
--- a/sdk/lib/async/async.dart |
+++ b/sdk/lib/async/async.dart |
@@ -44,7 +44,7 @@ |
* |
* A Stream provides an asynchronous sequence of data. |
* Examples of data sequences include user-generated events, |
- * such as mouse clicks, and a stream of bytes read from a file. |
+ * such as mouse clicks, and a stream of byte lists read from a file. |
Lasse Reichstein Nielsen
2014/03/18 11:57:14
How about:
... include individual events, like mou
Anders Johnsen
2014/03/18 12:30:57
Done.
|
* The following example opens a file for reading. |
* [Stream.listen] registers a callback function that runs |
* each time more data is available. |