diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-03-02 20:41:00 -0300 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-03-02 20:43:15 -0300 |
commit | 5ca0e4fe40410555ee38bde39390a501689ef025 (patch) | |
tree | 4ac597c529b18539d71ccbddd38f4506aa39dde6 | |
parent | dc106bbfdab8ed87847218e0216cc75f5b10cad1 (diff) |
Improved grammar
-rw-r--r-- | sx-question-print.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sx-question-print.el b/sx-question-print.el index 3309f3a..aaa3cd0 100644 --- a/sx-question-print.el +++ b/sx-question-print.el @@ -235,9 +235,9 @@ QUESTION must be a data structure returned by `json-read'." DATE is an integer." (insert "\n " (propertize - (format "Closed %s ago because %s" (sx-time-since date) reason) + (format " Closed %s ago. Reason: %s " (sx-time-since date) reason) 'face 'sx-question-mode-closed) - "\n\n")) + "\n")) (defun sx-question-mode--print-section (data) "Print a section corresponding to DATA. |