Skip to content

Commit 4c27428

Browse files
committed
fix
1 parent 9592e25 commit 4c27428

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Microfloats.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ for T in (
7070
- Has NaN: `$(hasnan($T))`
7171
- Max normal: `$(Float64(floatmax($T)))`
7272
- Min normal: `$(Float64(floatmin($T)))`
73-
- Max subnormal: `$(signficiand_bits($T) > 0 ? Float64(prevfloat(floatmin($T))) : "N/A")`
74-
- Min subnormal: `$(signficiand_bits($T) > 0 ? Float64(nextfloat(zero($T))) : "N/A")`
73+
- Max subnormal: `$(significand_bits($T) > 0 ? Float64(prevfloat(floatmin($T))) : "N/A")`
74+
- Min subnormal: `$(significand_bits($T) > 0 ? Float64(nextfloat(zero($T))) : "N/A")`
7575
"""
7676
$T
7777
end

0 commit comments

Comments
 (0)