diff options
| author | 2025-11-16 00:00:00 +0000 | |
|---|---|---|
| committer | 2025-11-16 00:00:00 +0000 | |
| commit | 503f2f1bbc69be553d04c621c7ec33931cc1f57d (patch) | |
| tree | 289b2ea2dc589d6ce7efc3e44966eabb6739d3f2 /ident.go | |
| parent | README: benmarking -> test (diff) | |
| signature | ||
Add a little bit more of documentation
Diffstat (limited to 'ident.go')
| -rw-r--r-- | ident.go | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -12,9 +12,14 @@ import ( // Ident represents a Git identity (author/committer/tagger). type Ident struct { - Name []byte - Email []byte - WhenUnix int64 + // Name represents the person's name. + Name []byte + // Email represents the person's email. + Email []byte + // WhenUnix represents the timestamp as a Unix time. + // This value is in UTC. + WhenUnix int64 + // The timezone offset in minutes. OffsetMinutes int32 } |
