From 0afa1d0399e1b813f417f696fb779e4cc2087408 Mon Sep 17 00:00:00 2001 From: Marvin Wendt Date: Tue, 1 Jun 2021 19:06:05 +0200 Subject: [PATCH] Fix missing character in comment --- formatter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formatter.go b/formatter.go index 4088837..cdd43c7 100644 --- a/formatter.go +++ b/formatter.go @@ -18,7 +18,7 @@ const ( // // * `entry.Data["msg"]`. The message passed from Info, Warn, Error .. // * `entry.Data["time"]`. The timestamp. -// * `entry.Data["level"]. The level the entry was logged at. +// * `entry.Data["level"]`. The level the entry was logged at. // // Any additional fields added with `WithField` or `WithFields` are also in // `entry.Data`. Format is expected to return an array of bytes which are then