From 2cf2a885fd564f6d7a8ca7c506b27288951bda9e Mon Sep 17 00:00:00 2001 From: Filip Kubiš Date: Sat, 20 Jun 2026 11:18:05 +0200 Subject: Use significand terminology As exercise 60 says: Donald Knuth would not be happy with us calling this mantissa. Proposing to use the less amiguous term significand --- exercises/115_packed2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises') diff --git a/exercises/115_packed2.zig b/exercises/115_packed2.zig index 2b6b558..bd25e20 100644 --- a/exercises/115_packed2.zig +++ b/exercises/115_packed2.zig @@ -55,7 +55,7 @@ comptime { const Float = packed union(u16) { value: f16, bits: packed struct(u16) { - mantissa: u10, + significand: u10, exponent: u5, sign: u1, }, -- cgit v1.2.3