summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2014-08-31 00:10:07 +0100
committerPhilip Withnall <philip@tecnocode.co.uk>2014-09-15 18:42:52 +0100
commit760ca0235f7b0e6413cd31cb371f5e3e83a8c490 (patch)
treedfab68e11ed510727c28a6d7b7e7110cdaa722cb
parentd10a15b0d5016d027bb7613218d64b81b2b5c724 (diff)
downloadlibgdata-760ca0235f7b0e6413cd31cb371f5e3e83a8c490.tar.gz
tasks: Improve documentation for GDataTasksTask properties
Better document the format of datetime-typed properties — they are the number of seconds since the UNIX epoch.
-rw-r--r--gdata/services/tasks/gdata-tasks-task.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/gdata/services/tasks/gdata-tasks-task.c b/gdata/services/tasks/gdata-tasks-task.c
index a2bec947..4551d729 100644
--- a/gdata/services/tasks/gdata-tasks-task.c
+++ b/gdata/services/tasks/gdata-tasks-task.c
@@ -155,8 +155,11 @@ gdata_tasks_task_class_init (GDataTasksTaskClass *klass)
/**
* GDataTasksTask:due:
*
- * Due date of the task (as a RFC 3339 timestamp).
- * This field is <code class="literal">-1</code> if task has not due date asigned.
+ * Due date of the task (as a RFC 3339 timestamp; seconds since the UNIX
+ * epoch).
+ *
+ * This field is <code class="literal">-1</code> if the task has no due
+ * date assigned.
*
* Since: 0.15.0
*/
@@ -169,8 +172,11 @@ gdata_tasks_task_class_init (GDataTasksTaskClass *klass)
/**
* GDataTasksTask:completed:
*
- * Completion date of the task (as a RFC 3339 timestamp).
- * This field is <code class="literal">-1</code> if the task has not been completed.
+ * Completion date of the task (as a RFC 3339 timestamp; seconds since
+ * the UNIX epoch).
+ *
+ * This field is <code class="literal">-1</code> if the task has not
+ * been completed.
*
* Since: 0.15.0
*/