From 4727b2bf647eb6141433f5de9f64a1e6e1f27752 Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Mon, 19 Oct 2020 21:49:37 +0200 Subject: [PATCH] Fix typo in outputted --- messaging/quality.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/quality.go b/messaging/quality.go index 7115693..a2c74c2 100644 --- a/messaging/quality.go +++ b/messaging/quality.go @@ -13,7 +13,7 @@ type Quality struct { // Incoming data come from this channel Broadcast chan<- []byte - // Incoming data will be outputed to all those outputs. + // Incoming data will be outputted to all those outputs. // Use a map to be able to delete an item. outputs map[chan []byte]struct{}