From 53c1d4cabd9cf6b3042ba96632cc870c26261212 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Mon, 25 Sep 2023 23:57:04 -0400 Subject: [PATCH] adding the underscore --- lectures/08_vector_implementation/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lectures/08_vector_implementation/README.md b/lectures/08_vector_implementation/README.md index c99cd13..587c82d 100644 --- a/lectures/08_vector_implementation/README.md +++ b/lectures/08_vector_implementation/README.md @@ -75,8 +75,7 @@ pointers and arrays. - m_size indicates the number of locations currently in use in the vector. This is exactly what the size() member function should return, - m_alloc is the total number of slots in the dynamically allocated block of memory. -Drawing pictures, which we will do in class, will help clarify this, especially the distinction between m size and -m alloc. +Drawing pictures, which we will do in class, will help clarify this, especially the distinction between m_size and m_alloc. ## 8.5 Typedefs