Skip to content

Commit 6bde3d2

Browse files
Merge pull request MicrosoftDocs#4577 from TylerMSFT/fixstream
fix typo
2 parents 4c47ccd + 93c480f commit 6bde3d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ See the example for [`basic_ifstream` Class](../standard-library/basic-ifstream-
119119
|[`swap`](#swap)|Exchanges this `basic_istream` object for the provided `basic_istream` object parameter.|
120120
|[`sync`](#sync)|Synchronizes the stream's associated input device with the stream's buffer.|
121121
|[`tellg`](#tellg)|Reports the current read position in the stream.|
122-
|[u`nget](#unget)|Puts the most recently read character back into the stream.|
122+
|[`unget`](#unget)|Puts the most recently read character back into the stream.|
123123
124124
### Operators
125125
@@ -161,7 +161,7 @@ A `basic_istream` object to copy.
161161

162162
The first constructor initializes the base class by calling `init(strbuf)`. It also stores zero in the extraction count. For more information, see [`init`](../standard-library/basic-ios-class.md#init). And for more information about this extraction count, see the Remarks section of the [`basic_istream` Class](../standard-library/basic-istream-class.md) overview.
163163

164-
The second constructor initializes the base class by calling `move(right)`. It also stores `right.gcount()` in the extraction count and stores zero in the extraction count for *`right`**.
164+
The second constructor initializes the base class by calling `move(right)`. It also stores `right.gcount()` in the extraction count and stores zero in the extraction count for *`right`*.
165165

166166
### Example
167167

0 commit comments

Comments
 (0)