Skip to content

Commit

Permalink
Normative: Fixed bug in NumberBitwiseOp (#1956)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnaldo authored and ljharb committed May 1, 2020
1 parent e50bcaa commit b815bc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -1751,7 +1751,7 @@ <h1>Number::sameValueZero ( _x_, _y_ )</h1>
<h1>NumberBitwiseOp ( _op_, _x_, _y_ )</h1>
<emu-alg>
1. Let _lnum_ be ! ToInt32(_x_).
1. Let _rnum_ be ! ToUint32(_y_).
1. Let _rnum_ be ! ToInt32(_y_).
1. Return the result of applying the bitwise operator _op_ to _lnum_ and _rnum_. The result is a signed 32-bit integer.
</emu-alg>
</emu-clause>
Expand Down

0 comments on commit b815bc1

Please sign in to comment.