Fix misspelling in the latest commit.

This commit is contained in:
Sei Lisa 2016-05-15 18:44:45 +02:00
parent b5dc38e9e6
commit b06ac33b5f

View file

@ -678,7 +678,7 @@ def div(a, b, f32=True):
return - a//-b # that's -(a//-b) not (-a)//-b
return a//b
ret = F32(ff(a)/ff(b), f32)
if math.isnan(res): # A NaN result gives a math error.
if math.isnan(ret): # A NaN result gives a math error.
raise ELSLMathError
return ret
if ta == Vector: