diff --git a/lectures/10_linked_lists/README.md b/lectures/10_linked_lists/README.md index 220686e..0721ef4 100644 --- a/lectures/10_linked_lists/README.md +++ b/lectures/10_linked_lists/README.md @@ -54,8 +54,7 @@ v_itr = w.begin() + 2; *v_itr = 2.78; // changes 3rd entry in w ``` -works fine because v_itr is a std::vector::iterator, but if a is a -std::vector then +works fine because v_itr is a std::vector<double>::iterator, but if *a* is a std::vector<std::string> then ```cpp v_itr = a.begin();