diff --git a/lectures/08_vector_implementation/README.md b/lectures/08_vector_implementation/README.md index 25b4173..568a01f 100644 --- a/lectures/08_vector_implementation/README.md +++ b/lectures/08_vector_implementation/README.md @@ -41,7 +41,7 @@ T”. In the actual text of the code files, templated member functions are often declaration. - The templated functions defined outside the template class declaration must be preceded by the phrase: -template and then when Vec is referred to it must be as Vec . For example, for member +template <class T> and then when Vec is referred to it must be as Vec<T>. For example, for member function create (two versions), we write: ```cpp