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/internal/str_format | |
parent | 4ffaea74c1f5408e0757547a1ca0518ad43fa9f1 (diff) |
Fix some spelling mistakes
Diffstat (limited to 'absl/strings/internal/str_format')
-rw-r--r-- | absl/strings/internal/str_format/float_conversion.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/strings/internal/str_format/float_conversion.cc b/absl/strings/internal/str_format/float_conversion.cc index f1490e5a..44b11390 100644 --- a/absl/strings/internal/str_format/float_conversion.cc +++ b/absl/strings/internal/str_format/float_conversion.cc @@ -711,7 +711,7 @@ bool IncrementNibble(size_t nibble_index, Int* n) { constexpr size_t kShift = sizeof(Int) * 8 - 1; constexpr size_t kNumNibbles = sizeof(Int) * 8 / 4; Int before = *n >> kShift; - // Here we essentially want to take the number 1 and move it into the requsted + // Here we essentially want to take the number 1 and move it into the requested // nibble, then add it to *n to effectively increment the nibble. However, // ASan will complain if we try to shift the 1 beyond the limits of the Int, // i.e., if the nibble_index is out of range. So therefore we check for this |