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 Apr 22, 2020
1 parent 16387ec commit c6fc823
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 @@ -1754,7 +1754,7 @@ <h1>NumberBitwiseOp ( _op_, _x_, _y_ )</h1>
<p>The abstract operation NumberBitwiseOp takes arguments _op_, _x_, and _y_. It performs the following steps when called:</p>
<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 c6fc823

Please # to comment.