diff lisp/org/org-timer.el @ 100458:ba23e35d3eaf

2008-12-17 Carsten Dominik <carsten.dominik@gmail.com> * Fix typos in comments and docstrings throughout Org-mode. * org.el (org-get-outline-path): Fix bug if level is not given. * org-agenda.el (org-finalize-agenda): Fix typo with variable name.
author Carsten Dominik <dominik@science.uva.nl>
date Wed, 17 Dec 2008 12:34:50 +0000
parents cea079b68b76
children 0d3c634e0bd9
line wrap: on
line diff
--- a/lisp/org/org-timer.el	Wed Dec 17 12:32:48 2008 +0000
+++ b/lisp/org/org-timer.el	Wed Dec 17 12:34:50 2008 +0000
@@ -5,7 +5,7 @@
 ;; Author: Carsten Dominik <carsten at orgmode dot org>
 ;; Keywords: outlines, hypermedia, calendar, wp
 ;; Homepage: http://orgmode.org
-;; Version: 6.15a
+;; Version: 6.15d
 ;;
 ;; This file is part of GNU Emacs.
 ;;
@@ -125,7 +125,7 @@
 
 ;;;###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 @@
 	       (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 @@
 
 (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)