Skip to content

Commit 46fe59f

Browse files
authored
Fix invalid range qualification
1 parent bbf4e08 commit 46fe59f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard-library/range-adaptors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1389,7 +1389,7 @@ int main()
13891389
Create a [`values_view`](values-view-class.md) that consists of the second index into each tuple-like value in a collection. This is useful for making a view of the values in an associative container. For example, given a range of `std::tuple<string, int>` values, create a view that consists of all the `int` elements from each tuple.
13901390

13911391
```cpp
1392-
template <range::viewable_range R>
1392+
template <ranges::viewable_range R>
13931393
constexpr ranges::view auto values(R&& rg);
13941394
```
13951395

0 commit comments

Comments
 (0)