diff options
author | Abseil Team <absl-team@google.com> | 2023-09-11 01:00:28 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-09-11 01:01:19 -0700 |
commit | 317085adc4e4e474eb4546fa9d37f74c61d95f7f (patch) | |
tree | a77c7cd8a8bb13b7942a3272adf7e8ce460ee4f2 | |
parent | efb035a5973b60d35ed8fcaa43e6736936a96173 (diff) |
Doc fix.
PiperOrigin-RevId: 564296635
Change-Id: I13ca663cdb676948a7041c5671b82a97a4388ff1
-rw-r--r-- | absl/strings/str_format.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/strings/str_format.h b/absl/strings/str_format.h index 023e4350..9e5e421d 100644 --- a/absl/strings/str_format.h +++ b/absl/strings/str_format.h @@ -250,7 +250,7 @@ class FormatCountCapture { // `v` uses `d` for signed integer values, `u` for unsigned integer values, `g` // for floating point values, and formats boolean values as "true"/"false" // (instead of 1 or 0 for booleans formatted using d). `const char*` is not -// supported; please use `std:string` and `string_view`. `char` is also not +// supported; please use `std::string` and `string_view`. `char` is also not // supported due to ambiguity of the type. This specifier does not support // modifiers. // |