diff options
author | Abseil Team <absl-team@google.com> | 2022-05-02 13:07:52 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-05-02 13:08:39 -0700 |
commit | d29393ceb9055722760442f51b7d44e3b2d0660f (patch) | |
tree | e2cb5478370681e063461c303f2c74cb32ec956c | |
parent | fad73ab077b846ff83e921ea1f5a6f831ea07ec2 (diff) |
Fixed typo in `try_emplace` comment.
PiperOrigin-RevId: 446010475
Change-Id: I28020510f3888a11f35b1960e9af441145ebf39b
-rw-r--r-- | absl/container/flat_hash_map.h | 4 | ||||
-rw-r--r-- | absl/container/node_hash_map.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/absl/container/flat_hash_map.h b/absl/container/flat_hash_map.h index cbb24693..e6bdbd9e 100644 --- a/absl/container/flat_hash_map.h +++ b/absl/container/flat_hash_map.h @@ -361,8 +361,8 @@ class flat_hash_map : public absl::container_internal::raw_hash_map< // `flat_hash_map`. // // iterator try_emplace(const_iterator hint, - // const init_type& k, Args&&... args): - // iterator try_emplace(const_iterator hint, init_type&& k, Args&&... args): + // const key_type& k, Args&&... args): + // iterator try_emplace(const_iterator hint, key_type&& k, Args&&... args): // // Inserts (via copy or move) the element of the specified key into the // `flat_hash_map` using the position of `hint` as a non-binding suggestion diff --git a/absl/container/node_hash_map.h b/absl/container/node_hash_map.h index c91cae69..6868e63a 100644 --- a/absl/container/node_hash_map.h +++ b/absl/container/node_hash_map.h @@ -352,8 +352,8 @@ class node_hash_map // `node_hash_map`. // // iterator try_emplace(const_iterator hint, - // const init_type& k, Args&&... args): - // iterator try_emplace(const_iterator hint, init_type&& k, Args&&... args): + // const key_type& k, Args&&... args): + // iterator try_emplace(const_iterator hint, key_type&& k, Args&&... args): // // Inserts (via copy or move) the element of the specified key into the // `node_hash_map` using the position of `hint` as a non-binding suggestion |