From f7d7da368f3809449423eada35777f060ea1a299 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Mon, 25 Sep 2023 23:49:20 -0400 Subject: [PATCH] showing the angle brackets --- lectures/08_vector_implementation/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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