From 6fd31b9aa039eaa622367b05a26a8fec94e26625 Mon Sep 17 00:00:00 2001 From: Beatriz Vieira Date: Sat, 31 Jul 2021 17:44:42 -0300 Subject: [PATCH] refactor: fix lint staticcheck SA9004 --- sv/git.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sv/git.go b/sv/git.go index 7d873c9..4290310 100644 --- a/sv/git.go +++ b/sv/git.go @@ -48,8 +48,8 @@ type LogRangeType string // constants for log range type. const ( TagRange LogRangeType = "tag" - DateRange = "date" - HashRange = "hash" + DateRange LogRangeType = "date" + HashRange LogRangeType = "hash" ) // LogRange git log range.