Skip to content

Commit

Permalink
Minor code edits
Browse files Browse the repository at this point in the history
  • Loading branch information
peteroupc committed Dec 7, 2024
1 parent 15dd605 commit 6efb64d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Numbers/PeterO/Numbers/EInteger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5027,8 +5027,8 @@ public EInteger ShiftLeft(EInteger eshift) {

/// <summary>Returns an arbitrary-precision integer with the bits
/// shifted to the left by a number of bits. A value of 1 doubles this
/// value, a value of 2 multiplies it by 4, a value of 3 &times; by, a
/// value of 4 &times; by, and so on.</summary>
/// value, a value of 2 multiplies it by 4, a value of 3 × by, a value
/// of 4 × by, and so on.</summary>
/// <param name='numberBits'>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.</param>
Expand Down
4 changes: 2 additions & 2 deletions Numbers/PeterO/Numbers/EIntegerExtra.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ public static EInteger FromUInt64(ulong ulongValue) {

/// <summary>Returns an arbitrary-precision integer with the bits
/// shifted to the left by a number of bits. A value of 1 doubles this
/// value, a value of 2 multiplies it by 4, a value of 3 &times; by, a
/// value of 4 &times; by, and so on.</summary>
/// value, a value of 2 multiplies it by 4, a value of 3 × by, a value
/// of 4 × by, and so on.</summary>
/// <param name='bthis'>The arbitrary-precision integer to shift
/// left.</param>
/// <param name='bitCount'>The number of bits to shift. Can be
Expand Down

0 comments on commit 6efb64d

Please sign in to comment.