From c44d5246287d92a71847107c7907dd52ce55142a Mon Sep 17 00:00:00 2001 From: Aditya Mukerjee Date: Mon, 9 Oct 2017 11:18:43 -0400 Subject: [PATCH] Fix typo in docstring --- logger.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logger.go b/logger.go index fdaf8a6..03a5de2 100644 --- a/logger.go +++ b/logger.go @@ -10,7 +10,7 @@ import ( type Logger struct { // The logs are `io.Copy`'d to this in a mutex. It's common to set this to a // file, or leave it default which is `os.Stderr`. You can also set this to - // something more adventorous, such as logging to Kafka. + // something more adventurous, such as logging to Kafka. Out io.Writer // Hooks for the logger instance. These allow firing events based on logging // levels and log entries. For example, to send errors to an error tracking