Skip to content

Commit 031068d

Browse files
authored
Merge pull request #34 from JeffreySarnoff/jas/fixtypo
fix typo (reinterepret -> reinterpret)
2 parents 6bf23f4 + 17fe369 commit 031068d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Quadmath.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,9 +511,9 @@ function Float128(x::BigFloat)
511511
elseif k >= -16381-112
512512
prec = 113 + (k + 16381)
513513
elseif k == -16381-113 && abs(y) > 0.5
514-
z = reinterepret(Float128, UInt128(1))
514+
z = reinterpret(Float128, UInt128(1))
515515
else
516-
z = reinterepret(Float128, UInt128(0))
516+
z = reinterpret(Float128, UInt128(0))
517517
end
518518

519519
@static if VERSION < v"1.1"

0 commit comments

Comments
 (0)