Commit 2df4e4ff8d55414909311ec5dabbd5ed73bccf18

Stefan Sperling 2018-12-23T12:11:34

mention that commit timestamps are UTC in API docs

diff --git a/include/got_object.h b/include/got_object.h
index af264e3..2bfa31d 100644
--- a/include/got_object.h
+++ b/include/got_object.h
@@ -148,7 +148,7 @@ const struct got_object_id_queue *got_object_commit_get_parent_ids(
 /* Get the author's name and email address. */
 const char *got_object_commit_get_author(struct got_commit_object *);
 
-/* Get an author's commit timestamp. */
+/* Get an author's commit timestamp in UTC. */
 time_t got_object_commit_get_author_time(struct got_commit_object *);
 
 /* Get an author's timezone offset. */
@@ -157,7 +157,7 @@ time_t got_object_commit_get_author_gmtoff(struct got_commit_object *);
 /* Get the committer's name and email address. */
 const char *got_object_commit_get_committer(struct got_commit_object *);
 
-/* Get an committer's commit timestamp. */
+/* Get an committer's commit timestamp in UTC. */
 time_t got_object_commit_get_committer_time(struct got_commit_object *);
 
 /* Get an committer's timezone offset. */