Skip to content

Commit c206950

Browse files
committed
fixed typo
1 parent d6c27ae commit c206950

File tree

2 files changed

+300
-299
lines changed

2 files changed

+300
-299
lines changed

sys/float.spin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ pri __builtin_ilogb(a=float) : r=long | s, x, m
335335
' determine whether a float is NaN or not
336336
pri __builtin_isnanf(a=float) : r | s, x, m
337337
(s,x,m) := _float_Unpack(a)
338-
if x < 128 || m == _float_one
338+
if x < 128 %orelse m == _float_one
339339
return false
340340
return true
341341

0 commit comments

Comments
 (0)