From 5b290cacc54e4810fd4008de14fc0b5008eaa450 Mon Sep 17 00:00:00 2001 From: PureFox48 <64583745+PureFox48@users.noreply.github.com> Date: Tue, 2 Mar 2021 19:11:21 +0000 Subject: [PATCH] Tentative fix for Num class docs issue on the wren.io site. (#932) --- doc/site/modules/core/num.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/site/modules/core/num.markdown b/doc/site/modules/core/num.markdown index a39734bc..9f880216 100644 --- a/doc/site/modules/core/num.markdown +++ b/doc/site/modules/core/num.markdown @@ -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 +### **<<**(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 +### **>>**(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.