👩💻 Join our community of thousands of amazing developers!
diff --git a/reference/iterator/counted_iterator/iter_move.md b/reference/iterator/counted_iterator/iter_move.md index 9b949231c..6a19d7416 100644 --- a/reference/iterator/counted_iterator/iter_move.md +++ b/reference/iterator/counted_iterator/iter_move.md @@ -6,12 +6,11 @@ ```cpp namespace std { - friend constexpr iter_rvalue_reference_t<I> + friend constexpr decltype(auto) iter_move(const counted_iterator& i) noexcept(noexcept(ranges::iter_move(i.current))) requires input_ite...