From b336f5f36ca9679155704c1ef3b0a21b2729c9ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Laitl?= Date: Thu, 8 Aug 2024 09:51:17 +0200 Subject: [PATCH] Fix typo in docstring Co-authored-by: Jen Tak --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 3ef3381..d17d37a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -780,7 +780,7 @@ impl SystemHandle { /// Publish an event. All actors that have previously subscribed to the type will receive it. /// - /// The event will be cached if it implements [`CacheableEvent`]. Actors that will subscribe + /// The event will be cached if it implements [`CacheableEvent`]. Actors that will subscribe to /// such an event type in future may choose to receive the last cached event upon subscription. /// /// When sending to some subscriber fails, others are still tried and vec of errors is returned.