diff options
author | Abseil Team <absl-team@google.com> | 2020-10-05 08:30:57 -0700 |
---|---|---|
committer | Mark Barolak <mbar@google.com> | 2020-10-06 10:49:50 -0400 |
commit | 4b4f9aae75d3c85bdc07b0575de5d4db40cea439 (patch) | |
tree | c167ac3856adf19388a21d56d46e3bf7eadbc20c | |
parent | 887d0eee6bab35847253181b32e78ff707010ccd (diff) |
Export of internal Abseil changes
--
6e808cee774d9f4fd315da432e39442ebb738429 by Abseil Team <absl-team@google.com>:
Fix a couple of typos.
PiperOrigin-RevId: 335422012
GitOrigin-RevId: 6e808cee774d9f4fd315da432e39442ebb738429
Change-Id: I8deec4caa0b5e1219d758ba1a2d7b138b9915ed4
-rw-r--r-- | absl/algorithm/container.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/algorithm/container.h b/absl/algorithm/container.h index 7778ab17..3c4fd733 100644 --- a/absl/algorithm/container.h +++ b/absl/algorithm/container.h @@ -90,10 +90,10 @@ using ContainerPointerType = // lookup of std::begin and std::end, i.e. // using std::begin; // using std::end; -// std::foo(begin(c), end(c); +// std::foo(begin(c), end(c)); // becomes // std::foo(container_algorithm_internal::begin(c), -// container_algorithm_internal::end(c)); +// container_algorithm_internal::end(c)); // These are meant for internal use only. template <typename C> |