diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-01-18 05:39:40 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-01-18 05:39:40 +0100 |
commit | db9e401b3bf3514cadf6fc5a4f15e8c869d0df4c (patch) | |
tree | 51ac199a0ed2477d0395c7eace93fc8fa4dabf6d /lisp/emacs-lisp/chart.el | |
parent | 33972e801477b638f22f4ba3f6e04199d5992124 (diff) | |
download | emacs-db9e401b3bf3514cadf6fc5a4f15e8c869d0df4c.tar.gz emacs-db9e401b3bf3514cadf6fc5a4f15e8c869d0df4c.tar.bz2 emacs-db9e401b3bf3514cadf6fc5a4f15e8c869d0df4c.zip |
Fix typos in docstrings, error messages, etc.
Diffstat (limited to 'lisp/emacs-lisp/chart.el')
-rw-r--r-- | lisp/emacs-lisp/chart.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/chart.el b/lisp/emacs-lisp/chart.el index 4f01e540601..d2abdcffe0d 100644 --- a/lisp/emacs-lisp/chart.el +++ b/lisp/emacs-lisp/chart.el @@ -644,7 +644,7 @@ SORT-PRED if desired." ;; Lets create the chart! (chart-bar-quickie 'vertical "Files Extension Distribution" extlst "File Extensions" - cntlst "# of occurances" + cntlst "# of occurrences" 10 '(lambda (a b) (> (cdr a) (cdr b)))) )) @@ -740,9 +740,9 @@ SORT-PRED if desired." (setcar cell (1+ (car cell)))) (setq nmlst (cons nam nmlst) cntlst (cons 1 cntlst)))))) - (chart-bar-quickie 'vertical "Username Occurance in RMAIL box" + (chart-bar-quickie 'vertical "Username Occurrence in RMAIL box" nmlst "User Names" - cntlst "# of occurances" + cntlst "# of occurrences" 10 '(lambda (a b) (> (cdr a) (cdr b)))) )) |