From b8544266e5da967ea4146c410ae3d6800b48322c Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Sat, 15 Feb 2025 02:31:50 -0800 Subject: [PATCH] fix: typo in queuestore.go --- internal/store/queuestore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/store/queuestore.go b/internal/store/queuestore.go index 640f821f5..ea7124c4c 100644 --- a/internal/store/queuestore.go +++ b/internal/store/queuestore.go @@ -156,7 +156,7 @@ func (store *QueueStore[I]) multiWrite(key Key, items []I) (err error) { // write - writes an item to the directory. func (store *QueueStore[I]) write(key Key, item I) error { - // Marshalls the item. + // Marshals the item. eventData, err := json.Marshal(item) if err != nil { return err