Index: sdk/lib/collection/hash_set.dart |
diff --git a/sdk/lib/collection/hash_set.dart b/sdk/lib/collection/hash_set.dart |
index 8e2a2a18c686f8a85672b761c963e66d2be374f2..89558f827a43824870273f91c9ffaefd09ac0a1c 100644 |
--- a/sdk/lib/collection/hash_set.dart |
+++ b/sdk/lib/collection/hash_set.dart |
@@ -62,7 +62,7 @@ abstract class HashSet<E> implements Set<E> { |
* to not be in the set when asking `contains`. |
* |
* If [equals] or [hashCode] are omitted, the set uses |
- * the elements' intrinsic [Object.operator==] and [Object.hashCode]. |
+ * the elements' intrinsic [Object.==] and [Object.hashCode]. |
* |
* If you supply one of [equals] and [hashCode], |
* you should generally also to supply the other. |