summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-05-30 23:19:54 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2016-05-30 23:20:20 -0700
commit01030eed9395f5004e7d0721394697d1ca90cc2f (patch)
tree3a13848e94b95796a5070adf8b2ec2e3dd4761f7 /lisp/emacs-lisp
parent0c26f14b7e200b39134ec70c77fab8c467cf3290 (diff)
downloademacs-01030eed9395f5004e7d0721394697d1ca90cc2f.tar.gz
emacs-01030eed9395f5004e7d0721394697d1ca90cc2f.tar.bz2
emacs-01030eed9395f5004e7d0721394697d1ca90cc2f.zip
; Spelling fixes
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/autoload.el2
-rw-r--r--lisp/emacs-lisp/radix-tree.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el
index afd8e4ee03e..424b8e31936 100644
--- a/lisp/emacs-lisp/autoload.el
+++ b/lisp/emacs-lisp/autoload.el
@@ -967,7 +967,7 @@ write its autoloads into the specified file instead."
t files-re))
dirs)))
(done ()) ;Files processed; to remove duplicates.
- (changed nil) ;Non-nil if some change occured.
+ (changed nil) ;Non-nil if some change occurred.
(last-time)
;; Files with no autoload cookies or whose autoloads go to other
;; files because of file-local autoload-generated-file settings.
diff --git a/lisp/emacs-lisp/radix-tree.el b/lisp/emacs-lisp/radix-tree.el
index a6984b8034c..d4b5cd211e4 100644
--- a/lisp/emacs-lisp/radix-tree.el
+++ b/lisp/emacs-lisp/radix-tree.el
@@ -38,7 +38,7 @@
;; of array, so every level's lookup is O(N) rather than O(1). We could easily
;; solve this by using char-tables instead of alists, but that would make every
;; level take up a lot more memory, and it would make the resulting
-;; datastructure harder to read (by a human) when printed out.
+;; data structure harder to read (by a human) when printed out.
;;; Code: