Browse code

spelling fix in comments

Signed-off-by: Shaun Thompson <shaun.thompson@docker.com>

Shaun Thompson authored on 2025/01/18 04:55:54
Showing 1 changed files
... ...
@@ -11,7 +11,7 @@ import (
11 11
 // MessageQueue is a queue for log messages.
12 12
 //
13 13
 // [MessageQueue.Enqueue] will block when the queue is full.
14
-// To dequeue messages call [MessageQueue.Reciever] and pull messsages off the
14
+// To dequeue messages call [MessageQueue.Receiver] and pull messages off the
15 15
 // returned channel.
16 16
 //
17 17
 // Closing only prevents new messages from being added to the queue.