diff options
Diffstat (limited to 'bug/comment.go')
-rw-r--r-- | bug/comment.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bug/comment.go b/bug/comment.go index 9cc38738..c0c07076 100644 --- a/bug/comment.go +++ b/bug/comment.go @@ -6,8 +6,8 @@ import ( ) type Comment struct { - Author Person `json:"author"` - Message string `json:"message"` + Author Person + Message string // Creation time of the comment. // Should be used only for human display, never for ordering as we can't rely on it in a distributed system. |