From 29a1a3fa69c2cf8c1d913148335697cb2a0641c2 Mon Sep 17 00:00:00 2001 From: Nate Finch Date: Sun, 15 Jun 2014 08:14:23 -0400 Subject: [PATCH] make golint happy --- lumberjack.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lumberjack.go b/lumberjack.go index 531ef08..1afb3f9 100644 --- a/lumberjack.go +++ b/lumberjack.go @@ -39,11 +39,13 @@ import ( const ( // Some helper constants to make your declarations easier to read. + Megabyte = 1024 * 1024 Gigabyte = 1024 * Megabyte - // note that lumberjack days and weeks may not exactly conform to calendar + // Note that lumberjack days and weeks may not exactly conform to calendar // days and weeks due to daylight savings, leap seconds, etc. + Day = 24 * time.Hour Week = 7 * Day