]> git.eshelyaron.com Git - emacs.git/commitdiff
(m2-case, m2-for, m2-if): Doc fix.
authorKarl Heuer <kwzh@gnu.org>
Thu, 4 Jan 1996 23:45:36 +0000 (23:45 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 4 Jan 1996 23:45:36 +0000 (23:45 +0000)
lisp/progmodes/modula2.el

index c80fbab844b010bb9090c158f400f4d2975b1ae0..12c6befae9d3393bf43d42f75c4e7d1101fe10fb 100644 (file)
@@ -166,7 +166,7 @@ followed by the first character of the construct.
   (m2-tab))
 
 (defun m2-case ()
-  "Build skeleton CASE statment, prompting for the <expression>."
+  "Build skeleton CASE statement, prompting for the <expression>."
   (interactive)
   (let ((name (read-string "Case-Expression: ")))
     (insert "CASE " name " OF")
@@ -194,7 +194,7 @@ followed by the first character of the construct.
   (m2-tab))
 
 (defun m2-for ()
-  "Build skeleton FOR loop statment, prompting for the loop parameters."
+  "Build skeleton FOR loop statement, prompting for the loop parameters."
   (interactive)
   (insert "FOR ")
   (let ((name (read-string "Loop Initialiser: ")) limit by)
@@ -224,7 +224,7 @@ followed by the first character of the construct.
   (insert "*)\n\n"))
 
 (defun m2-if ()
-  "Insert skeleton IF statment, prompting for <boolean-expression>."
+  "Insert skeleton IF statement, prompting for <boolean-expression>."
   (interactive)
   (insert "IF ")
   (let ((thecondition (read-string "<boolean-expression>: ")))