diff options
author | Eduardo Julian | 2016-12-20 23:12:15 -0400 |
---|---|---|
committer | Eduardo Julian | 2016-12-20 23:12:15 -0400 |
commit | 48f35a8ac7ae62095e1f92ab70bb42f3a6dd2d50 (patch) | |
tree | 593dcb15e1022d21754a756db8236171b04f7717 /stdlib/source | |
parent | e5a0de5dda02556bcbac112ec551f97f103a8486 (diff) |
- Updated tests and fixed code for lux/math/complex, lux/math/ratio.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/math/complex.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/math/complex.lux b/stdlib/source/lux/math/complex.lux index abfcd9e0a..1da82b290 100644 --- a/stdlib/source/lux/math/complex.lux +++ b/stdlib/source/lux/math/complex.lux @@ -267,7 +267,7 @@ (-> Complex Real) (math;atan2 real imaginary)) -(def: #export (nth-root nth input) +(def: #export (nth-roots nth input) (-> Nat Complex (List Complex)) (if (n.= +0 nth) (list) |