Commit aac30f6d by Abseil Team Committed by Copybara-Service

Fix typo in docstring for `absl::c_iota()`

PiperOrigin-RevId: 571418371
Change-Id: Ie650a4e8c7a9fbb022b1d27e6800765b59fcfc0c
parent 0a529cfc
...@@ -1657,7 +1657,7 @@ bool c_prev_permutation(C& c, LessThan&& comp) { ...@@ -1657,7 +1657,7 @@ bool c_prev_permutation(C& c, LessThan&& comp) {
// //
// Container-based version of the <numeric> `std::iota()` function // Container-based version of the <numeric> `std::iota()` function
// to compute successive values of `value`, as if incremented with `++value` // 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> template <typename Sequence, typename T>
void c_iota(Sequence& sequence, const T& value) { void c_iota(Sequence& sequence, const T& value) {
std::iota(container_algorithm_internal::c_begin(sequence), std::iota(container_algorithm_internal::c_begin(sequence),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment