132
132
//! ```
133
133
//!
134
134
//! Keys are required to be hashable and unique. If you need [`DropItem`] to hold a non-hashable
135
- //! value, or a repeated value, you can construct a [`DropItem`] with an abritrary value using
135
+ //! value, or a repeated value, you can construct a [`DropItem`] with an arbitrary value using
136
136
//! [`DropTracker::track_with_value`]:
137
137
//!
138
138
//! ```
@@ -344,7 +344,7 @@ impl<K> DropTracker<K> {
344
344
}
345
345
}
346
346
347
- /// Returns an iteartor over the keys tracked by this `DropTracker`.
347
+ /// Returns an iterator over the keys tracked by this `DropTracker`.
348
348
///
349
349
/// The order of keys returned by this iterator is non deterministic.
350
350
///
@@ -368,7 +368,7 @@ impl<K> DropTracker<K> {
368
368
self . tracked . keys ( )
369
369
}
370
370
371
- /// Returns an iteartor over the keys tracked by this `DropTracker` that are alive.
371
+ /// Returns an iterator over the keys tracked by this `DropTracker` that are alive.
372
372
///
373
373
/// The order of keys returned by this iterator is non deterministic.
374
374
///
@@ -400,7 +400,7 @@ impl<K> DropTracker<K> {
400
400
. map ( |( key, _) | key)
401
401
}
402
402
403
- /// Returns an iteartor over the keys tracked by this `DropTracker` that have been dropped.
403
+ /// Returns an iterator over the keys tracked by this `DropTracker` that have been dropped.
404
404
///
405
405
/// The order of keys returned by this iterator is non deterministic.
406
406
///
@@ -1038,7 +1038,7 @@ impl<K: Hash + Eq> DropTracker<K> {
1038
1038
/// // Create a new item, this time using an explicit `String` value
1039
1039
/// let abc_item = tracker.track_with_value(111, String::from("abc"));
1040
1040
///
1041
- /// // Comparision with other items using `String` work using the underlying `String`
1041
+ /// // Comparison with other items using `String` work using the underlying `String`
1042
1042
/// // operations
1043
1043
/// assert_eq!(abc_item, tracker.track_with_value(222, String::from("abc")));
1044
1044
/// assert_ne!(abc_item, tracker.track_with_value(333, String::from("def")));
0 commit comments