Tentative fix for Num class docs issue on the wren.io site. (#932)

This commit is contained in:
PureFox48
2021-03-02 19:11:21 +00:00
committed by GitHub
parent dfa7d9c895
commit 5b290cacc5

View File

@ -251,13 +251,13 @@ Performs bitwise exclusive or on the number. Both numbers are first converted to
It is a runtime error if `other` is not a number.
### **<<**(other) operator
### **&lt;&lt;**(other) operator
Performs a bitwise left shift on the number. Internally, both numbers are first converted to 32-bit unsigned values and C's left shift operator is then applied to them.
It is a runtime error if `other` is not a number.
### **>>**(other) operator
### **&gt;&gt;**(other) operator
Performs a bitwise right shift on the number. Internally, both numbers are first converted to 32-bit unsigned values and C's right shift operator is then applied to them.