diff --git a/src/BuildUtil/CoreUtil/ZLib.cs b/src/BuildUtil/CoreUtil/ZLib.cs index 2612eb60..c4ce95fc 100644 --- a/src/BuildUtil/CoreUtil/ZLib.cs +++ b/src/BuildUtil/CoreUtil/ZLib.cs @@ -4309,7 +4309,7 @@ namespace CoreUtil.Internal /// Performs an unsigned bitwise right shift with the specified number /// /// Number to operate on - /// Ammount of bits to shift + /// Amount of bits to shift /// The resulting number from the shift operation public static int URShift(int number, int bits) { @@ -4323,7 +4323,7 @@ namespace CoreUtil.Internal /// Performs an unsigned bitwise right shift with the specified number /// /// Number to operate on - /// Ammount of bits to shift + /// Amount of bits to shift /// The resulting number from the shift operation public static int URShift(int number, long bits) { @@ -4334,7 +4334,7 @@ namespace CoreUtil.Internal /// Performs an unsigned bitwise right shift with the specified number /// /// Number to operate on - /// Ammount of bits to shift + /// Amount of bits to shift /// The resulting number from the shift operation public static long URShift(long number, int bits) { @@ -4348,7 +4348,7 @@ namespace CoreUtil.Internal /// Performs an unsigned bitwise right shift with the specified number /// /// Number to operate on - /// Ammount of bits to shift + /// Amount of bits to shift /// The resulting number from the shift operation public static long URShift(long number, long bits) {