Skip to content

Commit

Permalink
fix description of symmetricDifference
Browse files Browse the repository at this point in the history
  • Loading branch information
bakkot committed Feb 12, 2024
1 parent 6239762 commit 6ceb395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/esnext.collection.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ interface Set<T> {
*/
difference<U>(other: ReadonlySetLike<U>): Set<T>;
/**
* @returns a new Set containing all the elements in this Set which are in this or in the argument, but not in both.
* @returns a new Set containing all the elements which are in either this Set or in the argument, but not in both.
*/
symmetricDifference<U>(other: ReadonlySetLike<U>): Set<T | U>;
/**
Expand Down

0 comments on commit 6ceb395

Please sign in to comment.