| Index: sdk/lib/async/async.dart
|
| diff --git a/sdk/lib/async/async.dart b/sdk/lib/async/async.dart
|
| index 7de40e683c786f67475647c26cba7f3cd280fe62..adf54f133df68e9cf9b596ab1507c320c9ad6a77 100644
|
| --- a/sdk/lib/async/async.dart
|
| +++ b/sdk/lib/async/async.dart
|
| @@ -43,8 +43,10 @@
|
| * ## Stream
|
| *
|
| * 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.
|
| + * Examples of data sequences include individual events, like mouse clicks,
|
| + * or sequential chunks of larger data, like multiple byte lists with the
|
| + * contents of a file
|
| + * such as mouse clicks, and a stream of byte lists read from a file.
|
| * The following example opens a file for reading.
|
| * [Stream.listen] registers a callback function that runs
|
| * each time more data is available.
|
|
|