Update delete_queue.rs

This commit is contained in:
Paul Masurel
2019-10-25 09:02:57 +09:00
committed by GitHub
parent ba0b89da36
commit 20aaaad04f

View File

@@ -15,7 +15,7 @@ use std::sync::{Arc, RwLock};
// New consumer can be created in two ways
// - calling `delete_queue.cursor()` returns a cursor, that
// will include all future delete operation (and no past operations).
// - cloning an existing cursor returns a nFew cursor, that
// - cloning an existing cursor returns a new cursor, that
// is at the exact same position, and can now advance independently
// from the original cursor.
#[derive(Default)]