| author | |
| committer | |
| log | c1e444b07c4b49df8e1fa7fba0b4a25bdc98004b |
| tree | bd64f46e3ea5b47d352a68174c6412593478ea1f |
| parent | 84154b10a23db1157998bcb3b3d5f9a42c2c0860 |
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 |