Skip to content

Commit

Permalink
Fix typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrubeck committed Jun 7, 2021
1 parent ec1e22a commit 81d33cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uluru"
version = "2.1.0"
version = "2.1.1"
authors = ["The Servo Project Developers", "Matt Brubeck <[email protected]>"]
license = "MPL-2.0"
description = "A simple, fast, LRU cache implementation"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ impl<T, const N: usize> LRUCache<T, N> {
false
}

/// Iterate mutably over the contents of this cache.
/// Iterate over the contents of this cache.
pub fn iter(&self) -> Iter<T, N> {
Iter {
pos: self.head,
Expand Down

0 comments on commit 81d33cb

Please sign in to comment.