diff options
author | Michael Muré <batolettre@gmail.com> | 2018-10-01 21:47:12 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-10-01 21:47:12 +0200 |
commit | a4b218adec59d5c7de564dfeef4729c4615906d6 (patch) | |
tree | 7113098f56fbd03ea77d38ea1eba1ef4ae125a63 /bug | |
parent | 97d94948536b119b4825d30c546248f91c41988d (diff) | |
download | git-bug-a4b218adec59d5c7de564dfeef4729c4615906d6.tar.gz |
add documentation
Diffstat (limited to 'bug')
-rw-r--r-- | bug/timeline.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bug/timeline.go b/bug/timeline.go index f2feafba..b5aa22a9 100644 --- a/bug/timeline.go +++ b/bug/timeline.go @@ -10,6 +10,10 @@ type TimelineItem interface { } type CommentHistoryStep struct { + // The author of the edition, not necessarily the same as the author of the + // original comment + Author Person + // The new message Message string UnixTime Timestamp } |