diff options
author | Abseil Team <absl-team@google.com> | 2023-10-06 13:19:24 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-10-06 13:20:11 -0700 |
commit | aac30f6d2ca5f0ed170432cfdf134df55f068b24 (patch) | |
tree | de9fecb8501cf4b920408c14b423bf596209e516 /absl/algorithm | |
parent | 0a529cfc5e419cb45aa83351ce20301213b8877c (diff) |
Fix typo in docstring for `absl::c_iota()`
PiperOrigin-RevId: 571418371
Change-Id: Ie650a4e8c7a9fbb022b1d27e6800765b59fcfc0c
Diffstat (limited to 'absl/algorithm')
-rw-r--r-- | absl/algorithm/container.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 <numeric> `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 <typename Sequence, typename T> void c_iota(Sequence& sequence, const T& value) { std::iota(container_algorithm_internal::c_begin(sequence), |