diff --git a/lectures/08_vector_implementation/README.md b/lectures/08_vector_implementation/README.md index 9c04136..cce795b 100644 --- a/lectures/08_vector_implementation/README.md +++ b/lectures/08_vector_implementation/README.md @@ -221,7 +221,7 @@ Foo f1;            & Foo\* f2;                         b) destructor f2 = new Foo(f1);          c) copy constructor f1 = \*f2;                         d) default constructor -delete f2;                         e) none of the above +delete f2;                        e) none of the above ## 8.15 Leetcode Exercises