From 4cc160eafebafffe8d2ca87e62deb15eab3994a0 Mon Sep 17 00:00:00 2001 From: Aaditya <56336914+Codemonk-adi@users.noreply.github.com> Date: Mon, 13 Sep 2021 22:43:36 +0530 Subject: [PATCH] Update vm/src/stdlib/cmath.rs Co-authored-by: Jim Fasarakis-Hilliard --- vm/src/stdlib/cmath.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/src/stdlib/cmath.rs b/vm/src/stdlib/cmath.rs index 6e94b5dbf..f4131785f 100644 --- a/vm/src/stdlib/cmath.rs +++ b/vm/src/stdlib/cmath.rs @@ -72,7 +72,7 @@ mod cmath { let z = z.to_complex(); result_or_overflow(z, z.exp(), vm) } - /// Calculates the square Root of the complex number + /// Return the square root of z. #[pyfunction] fn sqrt(z: IntoPyComplex) -> Complex64 { z.to_complex().sqrt()