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; |