| ... | ... | @@ -213,7 +213,7 @@ pub fn parseCommit(alloc: std.mem.Allocator, commitfile: string) !Commit { |
| 213 | 213 | return result; |
| 214 | 214 | } |
| 215 | 215 | |
| 216 | | fn parseCommitUserAndAt(input: string) !Commit.UserAndAt { |
| 216 | fn parseCommitUserAndAt(input: string) !UserAndAt { |
| 217 | 217 | const t = tracer.trace(@src(), "", .{}); |
| 218 | 218 | defer t.end(); |
| 219 | 219 | |
| ... | ... | @@ -246,12 +246,12 @@ pub const Commit = struct { |
| 246 | 246 | author: UserAndAt, |
| 247 | 247 | committer: UserAndAt, |
| 248 | 248 | message: string, |
| 249 | }; |
| 249 | 250 | |
| 250 | | pub const UserAndAt = struct { |
| 251 | | name: string, |
| 252 | | email: string, |
| 253 | | at: time.DateTime, |
| 254 | | }; |
| 251 | pub const UserAndAt = struct { |
| 252 | name: string, |
| 253 | email: string, |
| 254 | at: time.DateTime, |
| 255 | 255 | }; |
| 256 | 256 | |
| 257 | 257 | pub fn parseTree(alloc: std.mem.Allocator, treefile: string) !Tree { |