From c7f8dd55ba991c086f92c69af81cdb8f5fd13213 Mon Sep 17 00:00:00 2001 From: Paul Loyd Date: Mon, 5 Aug 2024 12:26:33 +0400 Subject: [PATCH] docs(core/context): clarify `unbounded_send()` --- elfo-core/src/context.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/elfo-core/src/context.rs b/elfo-core/src/context.rs index ef8d870d..8df2a48a 100644 --- a/elfo-core/src/context.rs +++ b/elfo-core/src/context.rs @@ -309,7 +309,7 @@ impl Context { /// /// It's possible to send requests if the response is not needed. /// - /// Returns `Err` if the message hasn't reached mailboxes or they are full. + /// Returns `Err` if the message hasn't reached mailboxes. /// /// # Example /// ``` @@ -571,7 +571,7 @@ impl Context { /// /// It's possible to send requests if the response is not needed. /// - /// Returns `Err` if the message hasn't reached mailboxes or they are full. + /// Returns `Err` if the message hasn't reached mailboxes. /// /// # Example /// ```