fix(signature): typo

This commit is contained in:
Savely Krasovsky 2022-08-15 08:59:33 +03:00
parent b9946c53ce
commit 175a5911fb
1 changed files with 1 additions and 1 deletions

View File

@ -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