Commit c1e444b07c

Adam C <acc1729+github@gmail.com>
2021-07-18 23:53:06
FIX typo in doc comment for std.math.hypot (#9413)
1 parent 84154b1
Changed files (1)
lib
std
lib/std/math/hypot.zig
@@ -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