Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
fix variable
Browse files Browse the repository at this point in the history
  • Loading branch information
bakkot committed Dec 20, 2023
1 parent cc797b2 commit 73b6250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ <h1>Set.prototype.symmetricDifference ( _other_ )</h1>
1. If _nextValue_ is *-0*<sub>𝔽</sub>, set _nextValue_ to *+0*<sub>𝔽</sub>.
1. Let _resultIndex_ be SetDataIndex(_resultSetData_, _nextValue_).
1. If SetDataHas(_O_.[[SetData]], _nextValue_) is *true*, then
1. If _resultIndex_ is not ~missing~, set _resultSetData_[_valueIndex_] to ~empty~.
1. If _resultIndex_ is not ~missing~, set _resultSetData_[_resultIndex_] to ~empty~.
1. Else,
1. If _resultIndex_ is ~missing~, append _nextValue_ to _resultSetData_.
1. Let _result_ be OrdinaryObjectCreate(%Set.prototype%, « [[SetData]] »).
Expand Down

0 comments on commit 73b6250

Please sign in to comment.