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

Unified Diff: sdk/lib/collection/maps.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/collection/maps.dart
diff --git a/sdk/lib/collection/maps.dart b/sdk/lib/collection/maps.dart
index 680d44051a485fb3df492c5ab2f7750d23857c16..e1791d27906328861dd12576c182f2e9f8c806e8 100644
--- a/sdk/lib/collection/maps.dart
+++ b/sdk/lib/collection/maps.dart
@@ -13,9 +13,9 @@ part of dart.collection;
* implementing `keys`, `operator[]`, `operator[]=`, `remove` and `clear`.
* The remaining operations are implemented in terms of these five.
*
- * The `keys` iterable should have efficient [length] and [contains]
- * operations, and it should catch concurrent modifications of the keys
- * while iterating.
+ * The `keys` iterable should have efficient [Iterable.length] and
+ * [Iterable.contains] operations, and it should catch concurrent modifications
+ * of the keys while iterating.
*
* A more efficient implementation is usually possible by overriding
* some of the other members as well.
@@ -31,9 +31,9 @@ abstract class MapBase<K, V> = Object with MapMixin<K, V>;
* implementing `keys`, `operator[]`, `operator[]=`, `remove` and `clear`.
* The remaining operations are implemented in terms of these five.
*
- * The `keys` iterable should have efficient [length] and [contains]
- * operations, and it should catch concurrent modifications of the keys
- * while iterating.
+ * The `keys` iterable should have efficient [Iterable.length] and
+ * [Iterable.contains] operations, and it should catch concurrent modifications
+ * of the keys while iterating.
*
* A more efficient implementation is usually possible by overriding
* some of the other members as well.
@@ -93,9 +93,9 @@ abstract class MapMixin<K, V> implements Map<K, V> {
* The remaining non-modifying operations are implemented in terms of `keys`
* and `operator[]`.
*
- * The `keys` iterable should have efficient [length] and [contains]
- * operations, and it should catch concurrent modifications of the keys
- * while iterating.
+ * The `keys` iterable should have efficient [Iterable.length] and
+ * [Iterable.contains] operations, and it should catch concurrent modifications
+ * of the keys while iterating.
*
* A more efficient implementation is usually possible by overriding
* some of the other members as well.

Powered by Google App Engine
This is Rietveld 408576698