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

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

Issue 2905013003: fix doc comments in dart:io and collection types (Closed)
Patch Set: Created 3 years, 7 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
Index: sdk/lib/io/data_transformer.dart
diff --git a/sdk/lib/io/data_transformer.dart b/sdk/lib/io/data_transformer.dart
index 84a43683c31caf735eea8fb9061f3c9e5c8ce195..7b46140d2ee4b9f03533b2e8d8c2e472924cbc91 100644
--- a/sdk/lib/io/data_transformer.dart
+++ b/sdk/lib/io/data_transformer.dart
@@ -22,28 +22,22 @@ abstract class ZLibOption {
/// and [ZLibDecoder.windowBits].
static const int DEFAULT_WINDOW_BITS = 15;
- /// Minimal value for [ZLibCodec.level], [ZLibEncoder.level]
- /// and [ZLibDecoder.level].
+ /// Minimal value for [ZLibCodec.level] and [ZLibEncoder.level].
static const int MIN_LEVEL = -1;
- /// Maximal value for [ZLibCodec.level], [ZLibEncoder.level]
- /// and [ZLibDecoder.level].
+ /// Maximal value for [ZLibCodec.level] and [ZLibEncoder.level]
static const int MAX_LEVEL = 9;
- /// Default value for [ZLibCodec.level], [ZLibEncoder.level]
- /// and [ZLibDecoder.level].
+ /// Default value for [ZLibCodec.level] and [ZLibEncoder.level].
static const int DEFAULT_LEVEL = 6;
- /// Minimal value for [ZLibCodec.memLevel], [ZLibEncoder.memLevel]
- /// and [ZLibDecoder.memLevel].
+ /// Minimal value for [ZLibCodec.memLevel] and [ZLibEncoder.memLevel].
static const int MIN_MEM_LEVEL = 1;
- /// Maximal value for [ZLibCodec.memLevel], [ZLibEncoder.memLevel]
- /// and [ZLibDecoder.memLevel].
+ /// Maximal value for [ZLibCodec.memLevel] and [ZLibEncoder.memLevel].
static const int MAX_MEM_LEVEL = 9;
- /// Default value for [ZLibCodec.memLevel], [ZLibEncoder.memLevel]
- /// and [ZLibDecoder.memLevel].
+ /// Default value for [ZLibCodec.memLevel] and [ZLibEncoder.memLevel].
static const int DEFAULT_MEM_LEVEL = 8;
/// Recommended strategy for data produced by a filter (or predictor)

Powered by Google App Engine
This is Rietveld 408576698