diff options
Diffstat (limited to 'stdlib/source')
-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) |