Skip to content

Commit a409eee

Browse files
authored
Update ostream-typedefs.md
1 parent 15b2acc commit a409eee

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

docs/standard-library/ostream-typedefs.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,19 @@ f1_keywords: ["iosfwd/std::ostream", "iosfwd/std::wostream"]
66
---
77
# `<ostream>` typedefs
88

9-
## <a name="ostream"></a> ostream
9+
The `<ostream>` header provides the following typedefs:
1010

11-
Creates a type from basic_ostream that is specialized on **`char`** and `char_traits` specialized on **`char`**.
11+
## <a name="ostream"></a> `ostream`
12+
13+
Creates a type from `basic_ostream` that is specialized on **`char`** and `char_traits` specialized on **`char`**.
1214

1315
```cpp
1416
typedef basic_ostream<char, char_traits<char>> ostream;
1517
```
1618

1719
### Remarks
1820

19-
The type is a synonym for class template [basic_ostream](../standard-library/basic-ostream-class.md), specialized for elements of type **`char`** with default character traits.
21+
The type is a synonym for class template [`basic_ostream`](../standard-library/basic-ostream-class.md), specialized for elements of type **`char`** with default character traits.
2022

2123
## <a name="wostream"></a> wostream
2224

@@ -28,7 +30,7 @@ typedef basic_ostream<wchar_t, char_traits<wchar_t>> wostream;
2830

2931
### Remarks
3032

31-
The type is a synonym for class template [basic_ostream](../standard-library/basic-ostream-class.md), specialized for elements of type **`wchar_t`** with default character traits.
33+
The type is a synonym for class template [`basic_ostream`](../standard-library/basic-ostream-class.md), specialized for elements of type **`wchar_t`** with default character traits.
3234

3335
## See also
3436

0 commit comments

Comments
 (0)