diff options
author | Vertexwahn <julian.amann@tum.de> | 2023-04-24 20:13:05 +0200 |
---|---|---|
committer | Vertexwahn <julian.amann@tum.de> | 2023-04-24 21:25:50 +0200 |
commit | 421a74dce4c6f768bfcca94ba62b65ded1d50f7c (patch) | |
tree | 5eb2dcfa7d285ad9c8b9c67f33f8e20acf02ff7a /absl/strings/charconv.cc | |
parent | 4ffaea74c1f5408e0757547a1ca0518ad43fa9f1 (diff) | |
download | abseil-421a74dce4c6f768bfcca94ba62b65ded1d50f7c.tar.gz abseil-421a74dce4c6f768bfcca94ba62b65ded1d50f7c.tar.bz2 abseil-421a74dce4c6f768bfcca94ba62b65ded1d50f7c.zip |
Fix some spelling mistakes
Diffstat (limited to 'absl/strings/charconv.cc')
-rw-r--r-- | absl/strings/charconv.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/strings/charconv.cc b/absl/strings/charconv.cc index 69d420bc..9f4e6d7c 100644 --- a/absl/strings/charconv.cc +++ b/absl/strings/charconv.cc @@ -203,7 +203,7 @@ struct FloatTraits<float> { if (mantissa > kMantissaMask) { // Normal value. // Adjust by 127 for the exponent representation bias, and an additional - // 23 due to the implied decimal point in the IEEE mantissa represenation. + // 23 due to the implied decimal point in the IEEE mantissa representation. flt += static_cast<uint32_t>(exponent + 127 + kTargetMantissaBits - 1) << 23; mantissa &= kMantissaMask; @@ -462,7 +462,7 @@ uint64_t ShiftRightAndRound(uint128 value, int shift, bool input_exact, // the low bit of `value` is set. // // In inexact mode, the nonzero error means the actual value is greater - // than the halfway point and we must alway round up. + // than the halfway point and we must always round up. if ((value & 1) == 1 || !input_exact) { ++value; } |