summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernt Hansen <bernt@norang.ca>2008-12-16 11:50:38 -0500
committerBernt Hansen <bernt@norang.ca>2008-12-16 12:26:25 -0500
commit298b9cb489373108d182077bc6531df95ef5ae0d (patch)
tree7ef7c5288688bc2056138af2130ed88ccc3b6194
parent03e0c6395bddc92a2b4788a618125b6e3f964bdf (diff)
downloadorg-mode-298b9cb489373108d182077bc6531df95ef5ae0d.tar.gz
Fix typos in org-timer.el
-rw-r--r--lisp/org-timer.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/org-timer.el b/lisp/org-timer.el
index 07a6248..99bd1a9 100644
--- a/lisp/org-timer.el
+++ b/lisp/org-timer.el
@@ -125,7 +125,7 @@ that was not started at the correct moment."
;;;###autoload
(defun org-timer-item (&optional arg)
- "Insert a description-type item with the curren timer value."
+ "Insert a description-type item with the current timer value."
(interactive "P")
(let ((ind 0))
(save-excursion
@@ -150,7 +150,7 @@ that was not started at the correct moment."
(if (match-end 2) (string-to-number (match-string 2 hms)) 0)
(string-to-number (match-string 3 hms)))
t t hms)
- (error "Canot parse HMS string \"%s\"" hms)))
+ (error "Cannot parse HMS string \"%s\"" hms)))
(defun org-timer-hms-to-secs (hms)
"Convert h:mm:ss string to an integer time.
@@ -168,7 +168,7 @@ If the string starts with a minus sign, the integer will be negative."
(defun org-timer-secs-to-hms (s)
"Convert integer S into h:mm:ss.
-If the integer is negative, the strig will start with \"-\"."
+If the integer is negative, the string will start with \"-\"."
(let (sign m h)
(setq sign (if (< s 0) "-" "")
s (abs s)