diff --git a/lib/pure/math.nim b/lib/pure/math.nim index e36e509be6..821ab738bc 100644 --- a/lib/pure/math.nim +++ b/lib/pure/math.nim @@ -206,7 +206,8 @@ when not defined(JS): proc cosh*(x: float): float {.importc: "cosh", header: "".} ## Computes the hyperbolic cosine of `x` proc hypot*(x, y: float): float {.importc: "hypot", header: "".} - ## Computes the distance between `x` and `y`. Equivalent to ``sqrt(x*x + y*y)``. + ## Computes the hypotenuse of a right-angle triangle with `x` and + ## `y` as its base and height. Equivalent to ``sqrt(x*x + y*y)``. proc sinh*(x: float): float {.importc: "sinh", header: "".} ## Computes the hyperbolic sine of `x`