diff --git a/Readme.md b/Readme.md index b7ee873..6ae4a97 100644 --- a/Readme.md +++ b/Readme.md @@ -36,7 +36,7 @@ │ ├── .symmetricDifference(other) // 返回当前集合与给定集合中, 不同时存在的所有元素集合 │ ├── .intersection(other) // 返回共有的元素集合 │ ├── .isSubsetOf(other) // 判断当前集合是否为给定集合的子集 -│ ├── .isSupersetOf(other) // 判断当前集合是否为给定集合的子超集 +│ ├── .isSupersetOf(other) // 判断当前集合是否为给定集合的超集 │ ├── .isDisjointFrom(other) // 判断当前集合,是否与给定集合完全不重合 │ ├── Date diff --git a/src/lib/set.js b/src/lib/set.js index 2fdf900..c3704f0 100644 --- a/src/lib/set.js +++ b/src/lib/set.js @@ -75,7 +75,7 @@ if (!Set.prototype.union) { } }) - // 判断当前集合是否为给定集合的子超集 + // 判断当前集合是否为给定集合的超集 Object.defineProperty(Set.prototype, 'isSupersetOf', { value(other) { for (let it of other) {