| author | |
| committer | |
| log | 95e5fac412ff355d9a6dc281e6f39b9c0e940c18 |
| tree | dec95de54c17b6136486d251da94b18753ba8b7c |
| parent | 9979741bff5867818e4186348e7aa4e271389317 |
| signature |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/math/hypot.zig+1-1| ... | ... | @@ -14,7 +14,7 @@ const math = std.math; |
| 14 | 14 | const expect = std.testing.expect; |
| 15 | 15 | const maxInt = std.math.maxInt; |
| 16 | 16 | |
| 17 | /// Returns sqrt(x * x + y * y), avoiding unncessary overflow and underflow. | |
| 17 | /// Returns sqrt(x * x + y * y), avoiding unnecessary overflow and underflow. | |
| 18 | 18 | /// |
| 19 | 19 | /// Special Cases: |
| 20 | 20 | /// - hypot(+-inf, y) = +inf |