Merge pull request 'Use significand terminology' (#465) from FilipKubis/ziglings:significand-consistent-naming into main

Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/465
This commit is contained in:
Chris Boesch
2026-06-21 14:24:14 +02:00
+1 -1
View File
@@ -55,7 +55,7 @@ comptime {
const Float = packed union(u16) {
value: f16,
bits: packed struct(u16) {
mantissa: u10,
significand: u10,
exponent: u5,
sign: u1,
},