diff options
author | Abseil Team <absl-team@google.com> | 2019-01-31T04·33-0800 |
---|---|---|
committer | Ashley Hedberg <ahedberg@google.com> | 2019-01-31T18·00-0500 |
commit | d78310fe5a82f2e0e6e16509ef8079c8d7e4674e (patch) | |
tree | cd4743565e27fb6c9c244d53d5ac54e29e784ce9 /absl/strings/str_format.h | |
parent | a4cb1c8ba61531a63f9d309eea01ac1d43d8371d (diff) |
Export of internal Abseil changes.
-- 2c12ae8d6cbb8cbeb3ff446393578dd0d6d0cf8c by Andy Getzendanner <durandal@google.com>: Fix printf POSIX reference link to point at printf(3) (the C API) instead of printf(1) (the shell utility). PiperOrigin-RevId: 231719473 -- a36b3a0e539b5ca2033bb25438aa325ac84a285a by CJ Johnson <johnsoncj@google.com>: Fixes "correct" but poor semantics `allocator_and_tag_` initializations in InlinedVector to the proper version that gets a reference/const reference to allocator_type PiperOrigin-RevId: 231691608 -- de5eca5c7146a1e4692a201804817d98354d20ec by CJ Johnson <johnsoncj@google.com>: Removes pathologically deleted move constructor and assignment operator from benchmark test type PiperOrigin-RevId: 231680297 -- b2b52859e5f0e14a25047e528c8163b12ea9ca32 by Matt Armstrong <marmstrong@google.com>: Assert on elapsed time, not absolute time. This is a cosmetic change that aims to make test failures clearer. Human readers no longer need to do as much mental math to deduce the magnitude of the failure. It does not change the semantics of the test assertions. PiperOrigin-RevId: 231644805 GitOrigin-RevId: 2c12ae8d6cbb8cbeb3ff446393578dd0d6d0cf8c Change-Id: Ic121a26a7a6bb7441da6a8c1d7797bee4f705fdc
Diffstat (limited to 'absl/strings/str_format.h')
-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 2d07725de21f..060909a2bfc1 100644 --- a/absl/strings/str_format.h +++ b/absl/strings/str_format.h @@ -186,7 +186,7 @@ class FormatCountCapture { // A format string generally follows the POSIX syntax as used within the POSIX // `printf` specification. // -// (See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/printf.html.) +// (See http://pubs.opengroup.org/onlinepubs/9699919799/functions/fprintf.html.) // // In specific, the `FormatSpec` supports the following type specifiers: // * `c` for characters |