diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-03-02 20:37:34 -0300 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-03-02 20:37:34 -0300 |
commit | dc106bbfdab8ed87847218e0216cc75f5b10cad1 (patch) | |
tree | 11d32f277edb4cf97d96179ee273d1b50d68d695 /sx-question-print.el | |
parent | e63a29e71d645e67275cb962ec0839e61da90863 (diff) |
Swap date and reason
Diffstat (limited to 'sx-question-print.el')
-rw-r--r-- | sx-question-print.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-question-print.el b/sx-question-print.el index 9e726b4..3309f3a 100644 --- a/sx-question-print.el +++ b/sx-question-print.el @@ -235,7 +235,7 @@ QUESTION must be a data structure returned by `json-read'." DATE is an integer." (insert "\n " (propertize - (format "Closed %s ago because %s" reason (sx-time-since date)) + (format "Closed %s ago because %s" (sx-time-since date) reason) 'face 'sx-question-mode-closed) "\n\n")) |