summaryrefslogtreecommitdiff
path: root/lisp/cedet
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-09-30 07:57:57 +0000
committerGlenn Morris <rgm@gnu.org>2009-09-30 07:57:57 +0000
commita1f1d102dba8bc78bcef0014b616dff235587fe2 (patch)
treee0ea77edcb355a31fa6d6a8b38f88e04df8f40a9 /lisp/cedet
parentd16d4acd043c76ba70dd042af9de2394fa14ac90 (diff)
downloademacs-a1f1d102dba8bc78bcef0014b616dff235587fe2.tar.gz
emacs-a1f1d102dba8bc78bcef0014b616dff235587fe2.tar.bz2
emacs-a1f1d102dba8bc78bcef0014b616dff235587fe2.zip
Fix comment typos.
(ede-proj-target-makefile-miscelaneous, ede-misc-source): Fix doc typos.
Diffstat (limited to 'lisp/cedet')
-rw-r--r--lisp/cedet/ede/proj-misc.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/cedet/ede/proj-misc.el b/lisp/cedet/ede/proj-misc.el
index 6f2624845c7..632bc7267b8 100644
--- a/lisp/cedet/ede/proj-misc.el
+++ b/lisp/cedet/ede/proj-misc.el
@@ -31,6 +31,8 @@
(require 'ede/proj-comp)
;;; Code:
+
+;; FIXME this isn't how you spell "miscellaneous". :(
(defclass ede-proj-target-makefile-miscelaneous (ede-proj-target-makefile)
((sourcetype :initform (ede-misc-source))
(availablecompilers :initform (ede-misc-compile))
@@ -42,7 +44,7 @@
"Miscellaneous sources which have a specialized makefile.
The sub-makefile is used to build this target.")
)
- "Miscelaneous target type.
+ "Miscellaneous target type.
A user-written makefile is used to build this target.
All listed sources are included in the distribution.")
@@ -50,7 +52,7 @@ All listed sources are included in the distribution.")
(ede-sourcecode "ede-misc-source"
:name "Miscelaneous"
:sourcepattern ".*")
- "Miscelaneous fiels definition.")
+ "Miscellaneous field definition.")
(defvar ede-misc-compile
(ede-compiler "ede-misc-compile"
@@ -80,7 +82,7 @@ All listed sources are included in the distribution.")
(defmethod ede-proj-makefile-insert-rules ((this ede-proj-target-makefile-miscelaneous))
"Create the make rule needed to create an archive for THIS."
;; DO NOT call the next method. We will never have any compilers,
- ;; or any dependencies, or stuff like this. This rull will lets us
+ ;; or any dependencies, or stuff like this. This rule will let us
;; deal with it in a nice way.
(insert (ede-name this) ": ")
(with-slots (submakefile) this