FIX typo in doc comment for std.math.hypot (#9413)

This commit is contained in:
Adam C 2021-07-18 17:53:06 -04:00 committed by Andrew Kelley
parent 84154b10a2
commit c1e444b07c

View File

@ -14,7 +14,7 @@ const math = std.math;
const expect = std.testing.expect;
const maxInt = std.math.maxInt;
/// Returns sqrt(x * x + y * y), avoiding unncessary overflow and underflow.
/// Returns sqrt(x * x + y * y), avoiding unnecessary overflow and underflow.
///
/// Special Cases:
/// - hypot(+-inf, y) = +inf