From e43eabdcacc49d576caff1fcf9597bca53e70c7d Mon Sep 17 00:00:00 2001 From: Lukas Malkmus Date: Thu, 12 Oct 2023 12:43:09 +0200 Subject: [PATCH] fix(cmd): typo 'absoute' -> 'absolute' --- internal/cmd/query/query.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/query/query.go b/internal/cmd/query/query.go index 6090e95..6bf9582 100644 --- a/internal/cmd/query/query.go +++ b/internal/cmd/query/query.go @@ -108,7 +108,7 @@ func NewCmd(f *cmdutil.Factory) *cobra.Command { func timeStrToTime(timeStr string, timestampFormat string) (time.Time, error) { if timestampFormat != "" { - // parse the timestamp as absoute because we have a definitive format + // parse the timestamp as absolute because we have a definitive format return time.Parse(timestampFormat, timeStr) }