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.