Fix confusing comment text

This commit is contained in:
Richard Gibson 2020-08-19 20:57:16 -04:00 committed by Rick Waldron
parent 46e26a99a6
commit 2dd3e50064
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ info: |
1. Let number be ? ToNumber(argument).
2. If number is NaN, +0, -0, +, or -, return +0.
3. Let int be the Number value that is the same sign as number and whose magnitude is floor(abs(number)).
4. Let int32bit be int modulo 232.
4. Let int32bit be int modulo 2**32.
5. Return int32bit.
---*/