Commit 1cb3345d by Abseil Team Committed by Copybara-Service

Doc fix.

PiperOrigin-RevId: 579263069
Change-Id: I78678c2fc6aba4851f8a06dafb695c913accf0d0
parent 1a03fb9d
...@@ -287,8 +287,8 @@ using FormatSpec = str_format_internal::FormatSpecTemplate< ...@@ -287,8 +287,8 @@ using FormatSpec = str_format_internal::FormatSpecTemplate<
// Example: // Example:
// //
// // Verified at compile time. // // Verified at compile time.
// absl::ParsedFormat<'s', 'd'> formatString("Welcome to %s, Number %d!"); // absl::ParsedFormat<'s', 'd'> format_string("Welcome to %s, Number %d!");
// absl::StrFormat(formatString, "TheVillage", 6); // absl::StrFormat(format_string, "TheVillage", 6);
// //
// // Verified at runtime. // // Verified at runtime.
// auto format_runtime = absl::ParsedFormat<'d'>::New(format_string); // auto format_runtime = absl::ParsedFormat<'d'>::New(format_string);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment