[libc] Fix typographical error in math_utils.h.
authorChris Gyurgyik <37983775+cgyurgyik@users.noreply.github.com>
Wed, 8 Jul 2020 15:56:21 +0000 (11:56 -0400)
committerGitHub <noreply@github.com>
Wed, 8 Jul 2020 15:56:21 +0000 (11:56 -0400)
libc/src/math/math_utils.h

index 50851bd..69028b0 100644 (file)
@@ -80,7 +80,7 @@ using EnableIfFloatOrDouble = cpp::EnableIfType<IsFloatOrDouble<T>::Value, int>;
 template <typename T, EnableIfFloatOrDouble<T> = 0>
 T xflow(uint32_t sign, T y) {
   // Underflow happens when two extremely small values are multiplied.
-  // Likewise, overflow happens when two large values are mulitplied.
+  // Likewise, overflow happens when two large values are multiplied.
   y = opt_barrier(sign ? -y : y) * y;
   return with_errno(y, ERANGE);
 }