Skip to content

Commit b49ef08

Browse files
authored
Rename "Parameters" heading with "Template parameters" in basic_string class reference
1 parent d7a7af8 commit b49ef08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ template <class CharType, class Traits = char_traits<CharType>, class Allocator
1818
class basic_string;
1919
```
2020
21-
### Parameters
21+
### Template parameters
2222
2323
*`CharType`*\
2424
The data type of a single character to be stored in the string. The C++ Standard Library provides specializations of this class template, with the type definitions [`string`](../standard-library/string-typedefs.md#string) for elements of type `char`, [`wstring`](../standard-library/string-typedefs.md#wstring), for `wchar_t`, [`u16string`](../standard-library/string-typedefs.md#u16string) for `char16_t`, and [`u32string`](../standard-library/string-typedefs.md#u32string) for `char32_t`.

0 commit comments

Comments
 (0)