Skip to content

Commit b6eaa7e

Browse files
author
mikeblome
committed
fixed link
1 parent 500ab7b commit b6eaa7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/cpp/templates-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ The basic requirements that `std::vector` and other standard library containers
110110
111111
## Non-type parameters
112112
113-
Unlike generic types in other languages such as C# and Java, C++ templates support *non-type parameters*, also called value parameters. For example, you can provide a constant integral value to specify the length of an array, as with this example that is similar to the [std::array](../standard-library/array-class.md) class in the Standard Library:
113+
Unlike generic types in other languages such as C# and Java, C++ templates support *non-type parameters*, also called value parameters. For example, you can provide a constant integral value to specify the length of an array, as with this example that is similar to the [std::array](../standard-library/array-class-stl.md) class in the Standard Library:
114114
115115
```cpp
116116
template<typename T, size_t L>

0 commit comments

Comments
 (0)