diff options
author | Glenn Morris <rgm@gnu.org> | 2004-12-07 12:22:19 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2004-12-07 12:22:19 +0000 |
commit | 83ea0f9c5deb0d8e472a9142140da555bcff006c (patch) | |
tree | 30e6de1130cd790358f10437070538be823d90fe /lisp/calendar | |
parent | b46ac5eab71b5d53e34a9d08f7add43090f1b543 (diff) | |
download | emacs-83ea0f9c5deb0d8e472a9142140da555bcff006c.tar.gz |
Fix spelling mistake in previous changes.
Diffstat (limited to 'lisp/calendar')
-rw-r--r-- | lisp/calendar/holidays.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/calendar/holidays.el b/lisp/calendar/holidays.el index 48c7d0b8dce..4493bd02a9c 100644 --- a/lisp/calendar/holidays.el +++ b/lisp/calendar/holidays.el @@ -407,9 +407,9 @@ STRING is used purely for display purposes. The return value has the form ((MONTH DAY YEAR) STRING), where the date is that of the Nth day before or after advent. -For backwards compatability, if this function is called with no +For backwards compatibility, if this function is called with no arguments, then it returns the value appropriate for advent itself." - ;; Backwards compatability layer. + ;; Backwards compatibility layer. (if (not n) (holiday-advent 0 "Advent") (let ((year displayed-year) @@ -431,11 +431,11 @@ STRING is used purely for display purposes. The return value has the form ((MONTH DAY YEAR) STRING), where the date is that of the Nth day before or after Easter. -For backwards compatability, if this function is called with no +For backwards compatibility, if this function is called with no arguments, then it returns a list of \"standard\" Easter-related holidays (with more entries if `all-christian-calendar-holidays' is non-nil)." - ;; Backwards compatability layer. + ;; Backwards compatibility layer. (if (not n) (let (res-list res) (dolist (elem (append |