aboutsummaryrefslogtreecommitdiffstats
path: root/bug/timeline.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-10-01 21:47:12 +0200
committerMichael Muré <batolettre@gmail.com>2018-10-01 21:47:12 +0200
commita4b218adec59d5c7de564dfeef4729c4615906d6 (patch)
tree7113098f56fbd03ea77d38ea1eba1ef4ae125a63 /bug/timeline.go
parent97d94948536b119b4825d30c546248f91c41988d (diff)
downloadgit-bug-a4b218adec59d5c7de564dfeef4729c4615906d6.tar.gz
add documentation
Diffstat (limited to 'bug/timeline.go')
-rw-r--r--bug/timeline.go4
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
}