From 15dd605f16c95e57a8ee1d0a6be5eb048f891e0d Mon Sep 17 00:00:00 2001 From: Peter Occil Date: Sat, 7 Dec 2024 12:24:49 -0500 Subject: [PATCH] Minor code edits; etc. --- Numbers/PeterO/Numbers/EInteger.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Numbers/PeterO/Numbers/EInteger.cs b/Numbers/PeterO/Numbers/EInteger.cs index ac059e5..129cc9b 100755 --- a/Numbers/PeterO/Numbers/EInteger.cs +++ b/Numbers/PeterO/Numbers/EInteger.cs @@ -5001,8 +5001,8 @@ public EInteger ShiftRight(EInteger eshift) { /// Returns an arbitrary-precision integer with the bits /// shifted to the left by a number of bits given as an /// arbitrary-precision integer. A value of 1 doubles this value, a - /// value of 2 multiplies it by 4, a value of 3 × by, a value of - /// 4 × by, and so on. + /// value of 2 multiplies it by 4; a value of 3, by 8; a value of 4, by + /// 16; and so on. /// The number of bits to shift. Can be negative, /// in which case this is the same as ShiftRight with the absolute /// value of this parameter.