From d088c2c07c1ef804b6acf3dcfa9145cef1bb21dc Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Thu, 23 Nov 2023 11:31:46 +0200 Subject: [PATCH] fix comment typo (#11) --- zerologlint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zerologlint.go b/zerologlint.go index 38e195d..737fe90 100644 --- a/zerologlint.go +++ b/zerologlint.go @@ -54,7 +54,7 @@ func run(pass *analysis.Pass) (interface{}, error) { } } // At the end, if the set is clear -> ok. - // Otherwise, there must be a left zerolog.Event var that weren't dispached. So report it. + // Otherwise, there must be a left zerolog.Event var that weren't dispatched. So report it. for k := range set { pass.Reportf(k.Pos(), "must be dispatched by Msg or Send method") }