Skip to content

Commit

Permalink
Tidy get_each_mut documentation and add a changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
Cole Miller committed Mar 8, 2021
1 parent 0c8f029 commit 6a22e91
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 6a22e91

Please sign in to comment.