diff options
-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> |