diff options
author | Abseil Team <absl-team@google.com> | 2023-10-24 09:17:46 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-10-24 09:18:40 -0700 |
commit | 8b38320373e802c288276a8c1cf3274957a4fa5e (patch) | |
tree | 8989e39803ae9d2457186ffabfd4a5aef548208d /absl/strings | |
parent | 822e3244e4b842fbcba9168e536ef71380a024b0 (diff) |
Fix a typo.
PiperOrigin-RevId: 576162408
Change-Id: Ib383bb744b5cb11b6cbc99f2323583e1d23d8ff1
Diffstat (limited to 'absl/strings')
-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 9e5e421d..68e7fcf2 100644 --- a/absl/strings/str_format.h +++ b/absl/strings/str_format.h @@ -381,7 +381,7 @@ std::string& StrAppendFormat(std::string* dst, // // Writes to an output stream given a format string and zero or more arguments, // generally in a manner that is more efficient than streaming the result of -// `absl:: StrFormat()`. The returned object must be streamed before the full +// `absl::StrFormat()`. The returned object must be streamed before the full // expression ends. // // Example: |