Skip to content

Commit 6ceb395

Browse files
committed
fix description of symmetricDifference
1 parent 6239762 commit 6ceb395

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/esnext.collection.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ interface Set<T> {
3939
*/
4040
difference<U>(other: ReadonlySetLike<U>): Set<T>;
4141
/**
42-
* @returns a new Set containing all the elements in this Set which are in this or in the argument, but not in both.
42+
* @returns a new Set containing all the elements which are in either this Set or in the argument, but not in both.
4343
*/
4444
symmetricDifference<U>(other: ReadonlySetLike<U>): Set<T | U>;
4545
/**

0 commit comments

Comments
 (0)