Fixed tiny typo in the math module (shr's description)

master
data-man 2019-08-09 12:43:29 +05:00 committed by Andrew Kelley
parent e6ebc41a07
commit 4bd4c5e06d
1 changed files with 1 additions and 1 deletions

View File

@ -366,7 +366,7 @@ test "math.shl" {
}
/// Shifts right. Overflowed bits are truncated.
/// A negative shift amount results in a lefft shift.
/// A negative shift amount results in a left shift.
pub fn shr(comptime T: type, a: T, shift_amt: var) T {
const abs_shift_amt = absCast(shift_amt);
const casted_shift_amt = if (abs_shift_amt >= T.bit_count) return 0 else @intCast(Log2Int(T), abs_shift_amt);