From aae8c6d0a6aa69b477850c05b8186dd5cc60bb73 Mon Sep 17 00:00:00 2001 From: Matthew Jackson Date: Mon, 11 May 2026 19:54:50 -0700 Subject: [PATCH] libfreemkv: add Clone derive to MuxAtomics --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 774e7c9..11018c7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -128,7 +128,7 @@ pub use halt::Halt; // Generic bounded producer/consumer primitive used by sweep, patch, and // mux to overlap reads with writes via a dedicated consumer thread. -// `Pipeline::spawn(depth, sink)` spawns the consumer; `pipe.send(item)` +// `Pipeline::spawn(name, depth, sink)` spawns a named consumer; `pipe.send(item)` // pushes one item with back-pressure; `pipe.finish()` joins the // consumer and surfaces its `close()` output. Callers implement `Sink` // to define per-item behaviour and end-of-stream finalisation.