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

Unified Diff: sdk/lib/io/data_transformer.dart

Issue 140783013: use proper notation for true, false, and null in doc comments (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: long line Created 6 years, 11 months 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 | « sdk/lib/core/expando.dart ('k') | sdk/lib/io/http.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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});
« no previous file with comments | « sdk/lib/core/expando.dart ('k') | sdk/lib/io/http.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698