]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix comment typos.
authorGlenn Morris <rgm@gnu.org>
Wed, 30 Sep 2009 07:57:57 +0000 (07:57 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 30 Sep 2009 07:57:57 +0000 (07:57 +0000)
(ede-proj-target-makefile-miscelaneous, ede-misc-source): Fix doc typos.

lisp/ChangeLog
lisp/cedet/ede/proj-misc.el

index 1e60a7f2bf08c32d223bf2d5572b354df7c36558..2811eb1120fd875815ec87404d8f8b031d1174e4 100644 (file)
@@ -1,5 +1,7 @@
 2009-09-30  Glenn Morris  <rgm@gnu.org>
 
+       * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
+       (ede-misc-source):
        * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
        (semantic-mrub-switch-tags): Fix doc typos.
 
index 6f2624845c7070b1c1b8fe0a9c65ea3961c1b846..632bc7267b8e9d38fa90d6a93cb51fc8af478def 100644 (file)
@@ -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