Fix typo in Num documentation

The documentation for the bitwise or operator described the behavior of the bitwise and operator.
This commit is contained in:
Nathan Hourt
2017-03-30 17:45:12 -05:00
committed by GitHub
parent 417ed7aeed
commit 8f14bfb4b8

View File

@ -152,7 +152,7 @@ It is a runtime error if `other` is not a number.
Performs bitwise or on the number. Both numbers are first converted to 32-bit
unsigned values. The result is then a 32-bit unsigned number where each bit is
`true` only where the corresponding bits of both inputs were `true`.
`true` only where the corresponding bits of one or both inputs were `true`.
It is a runtime error if `other` is not a number.