Skip to content

Commit c748c53

Browse files
authored
Remove extra trailing comma in istream iterator (#4962)
1 parent d03acc3 commit c748c53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard-library/istream-iterator-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Describes an input iterator object. It extracts objects of class `Type` from an
1515
## Syntax
1616

1717
```cpp
18-
template <class Type, class CharType = char, class Traits = char_traits<CharType>, class Distance = ptrdiff_t,>
18+
template <class Type, class CharType = char, class Traits = char_traits<CharType>, class Distance = ptrdiff_t>
1919
class istream_iterator
2020
: public iterator<
2121
input_iterator_tag, Type, Distance,

0 commit comments

Comments
 (0)