From aac30f6d2ca5f0ed170432cfdf134df55f068b24 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Fri, 6 Oct 2023 13:19:24 -0700 Subject: Fix typo in docstring for `absl::c_iota()` PiperOrigin-RevId: 571418371 Change-Id: Ie650a4e8c7a9fbb022b1d27e6800765b59fcfc0c --- absl/algorithm/container.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'absl') diff --git a/absl/algorithm/container.h b/absl/algorithm/container.h index 679e0267..a6320e9a 100644 --- a/absl/algorithm/container.h +++ b/absl/algorithm/container.h @@ -1657,7 +1657,7 @@ bool c_prev_permutation(C& c, LessThan&& comp) { // // Container-based version of the `std::iota()` function // to compute successive values of `value`, as if incremented with `++value` -// after each element is written. and write them to the container. +// after each element is written, and write them to the container. template void c_iota(Sequence& sequence, const T& value) { std::iota(container_algorithm_internal::c_begin(sequence), -- cgit v1.2.3