Document Done fields

This commit is contained in:
Joscha 2022-05-02 11:37:09 +02:00
parent 29e4e786ea
commit f231fee508

View file

@ -346,7 +346,9 @@ pub enum DoneKind {
#[derive(Debug)]
pub struct Done {
pub kind: DoneKind,
/// The date of the task the DONE refers to.
pub date: Option<DoneDate>,
/// When the task was actually completed.
pub done_at: NaiveDate,
}