From 0a4437593313df33996e032e508a546d353781f0 Mon Sep 17 00:00:00 2001 From: Max Countryman Date: Mon, 28 Oct 2024 10:02:29 -0700 Subject: [PATCH] clarify queue scope --- src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index bd68a82..daf36d1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -226,7 +226,7 @@ //! - [Tasks](#tasks) represent a well-structured unit of work. //! - [Jobs](#jobs) are a series of sequential steps, where each step is a //! [`Task`]. -//! - [Queues](#queues) provide an interface for managing task execution. +//! - [Queues](#queues) provide an interface for managing task lifecycle. //! - [Workers](#workers) interface with queues to execute tasks. //! //! ## Tasks @@ -251,8 +251,8 @@ //! //! ## Queues //! -//! Queues manage tasks, including enqueuing and dequeuing them from the -//! database. +//! Queues manage task lifecycle, including enqueuing and dequeuing them from +//! the database. //! //! See [`queue`] for more details about queues. //!