Skip to content

Commit

Permalink
Merge pull request #249 from cole-miller/get-each-mut-cleanup
Browse files Browse the repository at this point in the history
Tidy `get_each_mut` documentation and add a changelog entry
  • Loading branch information
Amanieu authored Mar 9, 2021
2 parents 0c8f029 + 6a22e91 commit b50e258
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## Added
- Added safe `try_insert_no_grow` method to `RawTable`. (#229)
- Implemented `Default` for `RawTable`. (#237)
- Added new safe methods `RawTable::get_each_mut`, `HashMap::get_each_mut`, and
`HashMap::get_each_key_value_mut`. (#239)

## Changed
- The minimum Rust version has been bumped to 1.49.0. (#230)
Expand Down
4 changes: 4 additions & 0 deletions src/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1107,6 +1107,8 @@ where
///
/// This method is available only if the `nightly` feature is enabled.
///
/// # Examples
///
/// ```
/// use hashbrown::{HashMap, UnavailableMutError};
///
Expand Down Expand Up @@ -1164,6 +1166,8 @@ where
///
/// This method is available only if the `nightly` feature is enabled.
///
/// # Examples
///
/// ```
/// use hashbrown::{HashMap, UnavailableMutError};
///
Expand Down

0 comments on commit b50e258

Please sign in to comment.