Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tetsurom committed Jan 19, 2023
1 parent 8b51996 commit 8d68f98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reference/ranges/repeat_view/iterator.md
Expand Up @@ -24,7 +24,7 @@ namespace std::ranges {
class repeat_view<T, Bound>::iterator {
private:
using index_type = conditional_t<same_as<Bound, unreachable_sentinel_t>, ptrdiff_t, Bound>;
const T* value_ = nullptr;P
const T* value_ = nullptr;
index_type current_ = index_type();

constexpr explicit iterator(const T* value, index_type b = index_type())
Expand Down

0 comments on commit 8d68f98

Please sign in to comment.