We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac02b8b commit bd1dd17Copy full SHA for bd1dd17
src/bounded.rs
@@ -231,7 +231,7 @@ impl<T> Bounded<T> {
231
let slot = &self.buffer[index];
232
let stamp = slot.stamp.load(Ordering::Acquire);
233
234
- // If the the stamp is ahead of the head by 1, we may attempt to pop.
+ // If the stamp is ahead of the head by 1, we may attempt to pop.
235
if head + 1 == stamp {
236
let new = if index + 1 < self.buffer.len() {
237
// Same lap, incremented index.
0 commit comments