Skip to content

Commit bd1dd17

Browse files
committed
Fix typo
1 parent ac02b8b commit bd1dd17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/bounded.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ impl<T> Bounded<T> {
231231
let slot = &self.buffer[index];
232232
let stamp = slot.stamp.load(Ordering::Acquire);
233233

234-
// If the the stamp is ahead of the head by 1, we may attempt to pop.
234+
// If the stamp is ahead of the head by 1, we may attempt to pop.
235235
if head + 1 == stamp {
236236
let new = if index + 1 < self.buffer.len() {
237237
// Same lap, incremented index.

0 commit comments

Comments
 (0)