diff options
author | Vertexwahn <julian.amann@tum.de> | 2023-04-27 22:10:09 +0200 |
---|---|---|
committer | Vertexwahn <julian.amann@tum.de> | 2023-04-27 22:10:09 +0200 |
commit | 9c32e50df8e7bbd777c64107e7580ed434f003c0 (patch) | |
tree | 89f513c0043f88ab2b9097d81bd463ab9f1935c8 /absl/strings/internal/str_format/float_conversion.cc | |
parent | 65109ecdf01a829bdb5e428174b3abb181e75826 (diff) | |
download | abseil-9c32e50df8e7bbd777c64107e7580ed434f003c0.tar.gz abseil-9c32e50df8e7bbd777c64107e7580ed434f003c0.tar.bz2 abseil-9c32e50df8e7bbd777c64107e7580ed434f003c0.zip |
Fix spelling mistakes
Diffstat (limited to 'absl/strings/internal/str_format/float_conversion.cc')
-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 1c729e7b..8edf520d 100644 --- a/absl/strings/internal/str_format/float_conversion.cc +++ b/absl/strings/internal/str_format/float_conversion.cc @@ -937,7 +937,7 @@ void FormatA(const HexFloatTypeParams float_traits, Int mantissa, int exp, // =============== Exponent ================== constexpr size_t kBufSizeForExpDecRepr = - numbers_internal::kFastToBufferSize // requred for FastIntToBuffer + numbers_internal::kFastToBufferSize // required for FastIntToBuffer + 1 // 'p' or 'P' + 1; // '+' or '-' char exp_buffer[kBufSizeForExpDecRepr]; |