diff --git a/stdlib/src/cmath.rs b/stdlib/src/cmath.rs index e05b8831c..726bd974e 100644 --- a/stdlib/src/cmath.rs +++ b/stdlib/src/cmath.rs @@ -136,14 +136,14 @@ mod cmath { #[pyfunction] fn sinh(z: IntoPyComplex) -> Complex64 { z.to_complex().sinh() - } + } /// Return the hyperbolic cosine of z. #[pyfunction] fn cosh(z: IntoPyComplex) -> Complex64 { z.to_complex().cosh() } - + /// Return the inverse hyperbolic sine of z. #[pyfunction] fn asinh(z: IntoPyComplex) -> Complex64 {