Index: runtime/third_party/double-conversion/src/bignum-dtoa.cc |
diff --git a/runtime/third_party/double-conversion/src/bignum-dtoa.cc b/runtime/third_party/double-conversion/src/bignum-dtoa.cc |
index f1ad7a5ae8dd027d53e2786d3f6c459aed04e397..7abfb599354e134fe471d849fd15f20faebe4314 100644 |
--- a/runtime/third_party/double-conversion/src/bignum-dtoa.cc |
+++ b/runtime/third_party/double-conversion/src/bignum-dtoa.cc |
@@ -370,7 +370,7 @@ static void BignumToFixed(int requested_digits, int* decimal_point, |
// Returns an estimation of k such that 10^(k-1) <= v < 10^k where |
// v = f * 2^exponent and 2^52 <= f < 2^53. |
// v is hence a normalized double with the given exponent. The output is an |
-// approximation for the exponent of the decimal approimation .digits * 10^k. |
+// approximation for the exponent of the decimal approximation .digits * 10^k. |
// |
// The result might undershoot by 1 in which case 10^k <= v < 10^k+1. |
// Note: this property holds for v's upper boundary m+ too. |