From dff78d82ce21d97cad53171b72b88550e02c2c7f Mon Sep 17 00:00:00 2001 From: Mohammed Al Sahaf Date: Fri, 3 Jan 2020 21:33:22 +0300 Subject: v2: housekeeping: address minor lint complaints (#2957) * v2: housekeeping: update tools * v2: housekeeping: adhere to US locale in spelling * v2: housekeeping: simplify code --- logging.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'logging.go') diff --git a/logging.go b/logging.go index 790f700..907f22a 100644 --- a/logging.go +++ b/logging.go @@ -76,7 +76,7 @@ type Logging struct { } // openLogs sets up the config and opens all the configured writers. -// It closes its logs when ctx is cancelled, so it should clean up +// It closes its logs when ctx is canceled, so it should clean up // after itself. func (logging *Logging) openLogs(ctx Context) error { // make sure to deallocate resources when context is done @@ -184,7 +184,7 @@ func (logging *Logging) setupNewDefault(ctx Context) error { // closeLogs cleans up resources allocated during openLogs. // A successful call to openLogs calls this automatically -// when the context is cancelled. +// when the context is canceled. func (logging *Logging) closeLogs() error { for _, key := range logging.writerKeys { _, err := writers.Delete(key) -- cgit v1.2.3