| Index: sdk/lib/core/sink.dart
|
| diff --git a/sdk/lib/core/sink.dart b/sdk/lib/core/sink.dart
|
| index c79214bbf5dac7060b715d298111480a6b101522..0d8f2eff254a9528e114c2d0d083265b617b0f52 100644
|
| --- a/sdk/lib/core/sink.dart
|
| +++ b/sdk/lib/core/sink.dart
|
| @@ -14,18 +14,18 @@ part of dart.core;
|
| */
|
| abstract class Sink<T> {
|
| /**
|
| - * Adds [data] to the sink.
|
| + * Put the data into the sink.
|
| *
|
| * Must not be called after a call to [close].
|
| */
|
| void add(T data);
|
|
|
| /**
|
| - * Closes the sink.
|
| - *
|
| - * The [add] method must not be called after this method.
|
| + * Tell the sink that no further data will be added.
|
| *
|
| * Calling this method more than once is allowed, but does nothing.
|
| + *
|
| + * The [add] method must not be called after this method.
|
| */
|
| void close();
|
| }
|
|
|