From 15a1563c59e1f33d96417202c2b57c6d2e5a11f1 Mon Sep 17 00:00:00 2001 From: Natercio Moniz Date: Thu, 20 Nov 2025 10:23:00 +0000 Subject: [PATCH] fix misspelled guaranteed --- async.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/async.go b/async.go index 02c96ab..68637b1 100644 --- a/async.go +++ b/async.go @@ -45,7 +45,7 @@ func NewAsyncTopic[T any](opts ...TopicOption) *AsyncTopic[T] { } // Close terminates background go routines and prevents further publishing and subscribing. All -// published messages are garanteed to be delivered once Close returns. This is idempotent and +// published messages are guaranteed to be delivered once Close returns. This is idempotent and // thread safe. func (t *AsyncTopic[T]) Close() { t.mu.Lock()