From 175a5911fb17bd0ed11ade512e0b475d5b07f3f3 Mon Sep 17 00:00:00 2001 From: Savely Krasovsky Date: Mon, 15 Aug 2022 08:59:33 +0300 Subject: [PATCH] fix(signature): typo --- signature.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signature.go b/signature.go index ad74e1d..bd67b16 100644 --- a/signature.go +++ b/signature.go @@ -32,7 +32,7 @@ func newSignatureFromC(sig *C.git_signature) *Signature { } } -// Offset returns the time zone offset of v.When in minutes, which is what git wants. +// Offset returns the time zone offset of sig.When in minutes, which is what git wants. func (sig *Signature) Offset() int { _, offset := sig.When.Zone() return offset / 60