Skip to content

Commit f57872d

Browse files
authored
Merge pull request #5427 from Rageking8/elide-single-stray-parenthesis-and-square-bracket
Elide single stray parenthesis and square bracket
2 parents 4a1e10f + c707453 commit f57872d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/standard-library/basic-istringstream-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ An rvalue reference of a `basic_istringstream` object.
102102
103103
### Remarks
104104
105-
The first constructor initializes the base class by calling `basic_istream]( sb )`, where `sb` is the stored object of class `basic_stringbuf< Elem, Tr, Alloc>`. It also initializes `sb` by calling `basic_stringbuf< Elem, Tr, Alloc >( _Mode | ios_base::in )`. For more information, see [`basic_istream`](../standard-library/basic-istream-class.md) and [`basic_stringbuf`](../standard-library/basic-stringbuf-class.md).
105+
The first constructor initializes the base class by calling `basic_istream( sb )`, where `sb` is the stored object of class `basic_stringbuf< Elem, Tr, Alloc>`. It also initializes `sb` by calling `basic_stringbuf< Elem, Tr, Alloc >( _Mode | ios_base::in )`. For more information, see [`basic_istream`](../standard-library/basic-istream-class.md) and [`basic_stringbuf`](../standard-library/basic-stringbuf-class.md).
106106
107107
The second constructor initializes the base class by calling `basic_istream( sb )`. It also initializes `sb` by calling `basic_stringbuf< Elem, Tr, Alloc >( str, _Mode | ios_base::in )`.
108108

docs/standard-library/ctype-char-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ The explicit specialization differs from the class template in several ways:
107107
108108
- The static member object `table_size` specifies the minimum number of elements in a ctype mask table.
109109
110-
- The protected static member function `classic_table`( returns the ctype mask table appropriate to the "C" locale.
110+
- The protected static member function `classic_table` returns the ctype mask table appropriate to the "C" locale.
111111
112112
- There are no protected virtual member functions [do_is](../standard-library/ctype-class.md#do_is), [do_scan_is](../standard-library/ctype-class.md#do_scan_is), or [do_scan_not](../standard-library/ctype-class.md#do_scan_not). The corresponding public member functions perform the equivalent operations themselves.
113113

0 commit comments

Comments
 (0)