From 883a11f2a80d7798ca9d64d7238c52ab768493b8 Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Tue, 17 Nov 2020 13:43:40 -0800 Subject: [PATCH] logtail: fix typo in comment Signed-off-by: Josh Bleecher Snyder --- logtail/logtail.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logtail/logtail.go b/logtail/logtail.go index d5e5204df..9cedb6bc3 100644 --- a/logtail/logtail.go +++ b/logtail/logtail.go @@ -69,7 +69,7 @@ type Config struct { Buffer Buffer // temp storage, if nil a MemoryBuffer NewZstdEncoder func() Encoder // if set, used to compress logs for transmission - // DrainLogs, if non-nil, disables autmatic uploading of new logs, + // DrainLogs, if non-nil, disables automatic uploading of new logs, // so that logs are only uploaded when a token is sent to DrainLogs. DrainLogs <-chan struct{} }