Fix errors in some docstrings

This commit is contained in:
Daniel - 2023-12-08 17:27:29 +01:00
parent 482cebea68
commit 7128144ee0
Signed by: dbo
GPG Key ID: 784AA8DF0CCDF625
1 changed files with 5 additions and 4 deletions

View File

@ -466,7 +466,7 @@ interactively query the user for the next task to clock into."
(modify-frame-parameters frame `((name . ,org-clock-heading))))))) (modify-frame-parameters frame `((name . ,org-clock-heading)))))))
(defun db/show-current-org-task () (defun db/show-current-org-task ()
"Show title of currently clock in task in modeline." "Show title of currently clock in task in minibuffer."
(interactive) (interactive)
(message org-clock-current-task)) (message org-clock-current-task))
@ -816,10 +816,11 @@ PARAMS is a property list of the following parameters:
(defun db/org-clock-in-last-task (&optional arg) (defun db/org-clock-in-last-task (&optional arg)
;; from doc.norang.ca, originally bh/clock-in-last-task ;; from doc.norang.ca, originally bh/clock-in-last-task
"Clock in the interrupted task if there is one. "Clock into the last task from the clocking history.
Skip the default task and get the next one. If ARG is given, Skip the default task if it's at the top of the clocking history,
forces clocking in of the default task." and get the next one. If ARG is given, forces clocking in of the
default task, though."
(interactive "p") (interactive "p")
(let ((clock-in-to-task (let ((clock-in-to-task
(cond (cond