From 9f976f40927b7ae50d1f9fc8bb9afe2fa3f447f1 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Thu, 14 Sep 2023 22:48:13 -0400 Subject: [PATCH] doc --- src/bb_queue.mli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bb_queue.mli b/src/bb_queue.mli index b2428d7a..b4a1e584 100644 --- a/src/bb_queue.mli +++ b/src/bb_queue.mli @@ -23,7 +23,7 @@ val try_pop : force_lock:bool -> 'a t -> 'a option or returns [None] without blocking. @param force_lock if true, use {!Mutex.lock} (which can block under contention); if false, use {!Mutex.try_lock}, which might return [None] even in - presence of an element if there's contention *) + presence of an element if there's contention *) val try_push : 'a t -> 'a -> bool (** [try_push q x] tries to push into [q], in which case