Index: sdk/lib/core/set.dart |
diff --git a/sdk/lib/core/set.dart b/sdk/lib/core/set.dart |
index d2e9d8d14b03981e5ffb55b9b72d5a5e20f7316a..fe00311bbf2e8877b56581e831d2ceb99c0d4044 100644 |
--- a/sdk/lib/core/set.dart |
+++ b/sdk/lib/core/set.dart |
@@ -21,7 +21,7 @@ part of dart.core; |
* or ordered in some way. Examples: |
* |
* * A [HashSet] is unordered, which means that its iteration order is |
- * uspecified, |
+ * unspecified, |
* * [LinkedHashSet] iterates in the insertion order of its elements, and |
* * a sorted set like [SplayTreeSet] iterates the elements in sorted order. |
* |