Skip to content

Commit

Permalink
Update ranges_copy.md
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
nakashima-hikaru authored Mar 30, 2024
1 parent b064d83 commit 2bb90e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reference/algorithm/ranges_copy.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ int main() {
std::vector<int> v2(v.size()); // ちゃんと確保しておくこと
std::ranges::copy(v, v2.begin());

// back_inserter を使って v3 へ設定。
// back_inserter は要素をコピーするときに v3.push_back() するイテレータを作る関数。
// back_inserter を使って ls3 へ設定。
// back_inserter は要素をコピーするときに ls3.push_back() するイテレータを作る関数。
std::list<int> ls3;
std::ranges::copy(v2, std::back_inserter(ls3));

Expand Down

0 comments on commit 2bb90e8

Please sign in to comment.