Skip to content

Commit 765eb70

Browse files
Fix spelling mistakes
1 parent 5f26272 commit 765eb70

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/lib.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
//! ```
133133
//!
134134
//! 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
136136
//! [`DropTracker::track_with_value`]:
137137
//!
138138
//! ```
@@ -344,7 +344,7 @@ impl<K> DropTracker<K> {
344344
}
345345
}
346346

347-
/// Returns an iteartor over the keys tracked by this `DropTracker`.
347+
/// Returns an iterator over the keys tracked by this `DropTracker`.
348348
///
349349
/// The order of keys returned by this iterator is non deterministic.
350350
///
@@ -368,7 +368,7 @@ impl<K> DropTracker<K> {
368368
self.tracked.keys()
369369
}
370370

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.
372372
///
373373
/// The order of keys returned by this iterator is non deterministic.
374374
///
@@ -400,7 +400,7 @@ impl<K> DropTracker<K> {
400400
.map(|(key, _)| key)
401401
}
402402

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.
404404
///
405405
/// The order of keys returned by this iterator is non deterministic.
406406
///
@@ -1038,7 +1038,7 @@ impl<K: Hash + Eq> DropTracker<K> {
10381038
/// // Create a new item, this time using an explicit `String` value
10391039
/// let abc_item = tracker.track_with_value(111, String::from("abc"));
10401040
///
1041-
/// // Comparision with other items using `String` work using the underlying `String`
1041+
/// // Comparison with other items using `String` work using the underlying `String`
10421042
/// // operations
10431043
/// assert_eq!(abc_item, tracker.track_with_value(222, String::from("abc")));
10441044
/// assert_ne!(abc_item, tracker.track_with_value(333, String::from("def")));

0 commit comments

Comments
 (0)