diff --git a/lectures/21_hash_tables_II/README.md b/lectures/21_hash_tables_II/README.md index 3ae7239..1e3c624 100644 --- a/lectures/21_hash_tables_II/README.md +++ b/lectures/21_hash_tables_II/README.md @@ -113,7 +113,8 @@ if (itr != my_data.end()) { ## 21.5 Using STL’s Associative Hash Table (Map) - Using the default std::string hash function. - – With no specified initial table size. + + – With no specified initial table size. (map a std::string type key to a Foo class type value) ```cpp std::unordered_map m; ```