Skip to content

Commit 5b2e9fd

Browse files
authored
Change Ty template parameter to Type in std::rank reference
1 parent 049f4df commit 5b2e9fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/standard-library/rank-class.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ Gets number of array dimensions.
1313
## Syntax
1414

1515
```cpp
16-
template <class Ty>
16+
template <class Type>
1717
struct rank;
1818
```
1919

2020
### Template parameters
2121

22-
*`Ty`*\
22+
*`Type`*\
2323
The type to query.
2424

2525
## Remarks
2626

27-
The type query holds the value of the number of dimensions of the array type *`Ty`*, or 0 if *`Ty`* is not an array type.
27+
The type query holds the value of the number of dimensions of the array type *`Type`*, or 0 if *`Type`* is not an array type.
2828

2929
## Example
3030

0 commit comments

Comments
 (0)