| Index: sdk/lib/io/data_transformer.dart
|
| diff --git a/sdk/lib/io/data_transformer.dart b/sdk/lib/io/data_transformer.dart
|
| index 79df03cc140dfac3b857a07f297157d3dd0f219d..dec5c5df7f5fc3bde60bb76dbf2fb4cd0d1e667c 100644
|
| --- a/sdk/lib/io/data_transformer.dart
|
| +++ b/sdk/lib/io/data_transformer.dart
|
| @@ -265,16 +265,16 @@ class _FilterSink extends ByteConversionSink {
|
| abstract class _Filter {
|
| /**
|
| * Call to process a chunk of data. A call to [process] should only be made
|
| - * when [processed] returns [null].
|
| + * when [processed] returns [:null:].
|
| */
|
| void process(List<int> data, int start, int end);
|
|
|
| /**
|
| * Get a chunk of processed data. When there are no more data available,
|
| - * [processed] will return [null]. Set [flush] to [false] for non-final
|
| + * [processed] will return [:null:]. Set [flush] to [:false:] for non-final
|
| * calls to improve performance of some filters.
|
| *
|
| - * The last call to [processed] should have [end] set to [true]. This will make
|
| + * The last call to [processed] should have [end] set to [:true:]. This will make
|
| * sure a 'end' packet is written on the stream.
|
| */
|
| List<int> processed({bool flush: true, bool end: false});
|
|
|