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

Unified Diff: sdk/lib/collection/set.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/set.dart
diff --git a/sdk/lib/collection/set.dart b/sdk/lib/collection/set.dart
index 5aaa0a3577a412c2140d340591f2bc41c6efbb52..06e555ee6a07ea2ca2996474a26190637cdb88e4 100644
--- a/sdk/lib/collection/set.dart
+++ b/sdk/lib/collection/set.dart
@@ -29,13 +29,13 @@ abstract class SetMixin<E> implements Set<E> {
// If/when Dart mixins get more powerful, we should just create a single
// Mixin class from IterableMixin and the new methods of this class.
- bool add(E element);
+ bool add(E value);
bool contains(Object element);
E lookup(Object element);
- bool remove(Object element);
+ bool remove(Object value);
Iterator<E> get iterator;

Powered by Google App Engine
This is Rietveld 408576698