diff options
Diffstat (limited to 'lib/pure/math.nim')
-rw-r--r-- | lib/pure/math.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pure/math.nim b/lib/pure/math.nim index e36e509be..821ab738b 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: "<math.h>".} ## Computes the hyperbolic cosine of `x` proc hypot*(x, y: float): float {.importc: "hypot", header: "<math.h>".} - ## 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: "<math.h>".} ## Computes the hyperbolic sine of `x` |