Skip to content

Commit

Permalink
Update changelog. Fix some typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JustForFun88 committed Apr 22, 2022
1 parent 9fd7d3a commit 96162df
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

All notable changes to this project will be documented in this file.

## [v0.11.0] - 2022-04-22

### Added

- [`Eq`](https://doc.rust-lang.org/beta/core/cmp/trait.Eq.html) trait implementation for `DHashMap`;
- [`IntoIterator`](https://doc.rust-lang.org/core/iter/trait.IntoIterator.html) trait implementation for `DHashMap`;

### Changed

Nothing

### Removed

Nothing

### Fixed

Nothing

## [v0.10.0] - 2022-04-21

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ interface. Look at [Change log](CHANGELOG.md) for more information.
- [ ] `From`: Under development
- [x] `FromIterator`: Done since `v0.2.0`
- [ ] `Index`: Under development
- [ ] `IntoIterator`: Under development
- [x] `IntoIterator`: Done since `v0.11.0`
- [x] `PartialEq`: Done since `v0.9.0`
- [x] `Eq`: Done since `v0.11.0`

Expand Down
2 changes: 1 addition & 1 deletion src/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2807,7 +2807,7 @@ impl<'a, K1, K2, V, S> IntoIterator for &'a mut DHashMap<K1, K2, V, S> {

/// Creates an iterator visiting all keys-value tuples in arbitrary order,
/// with mutable references to the values. The iterator element is tuple
/// of type `(&'a K1, &'a K2, &'a V)`.
/// of type `(&'a K1, &'a K2, &'a mut V)`.
///
/// # Note
///
Expand Down

0 comments on commit 96162df

Please sign in to comment.