]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typo in Introduction to Emacs Lisp
authorStefan Kangas <stefankangas@gmail.com>
Mon, 31 Aug 2020 09:34:18 +0000 (11:34 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Mon, 31 Aug 2020 09:34:57 +0000 (11:34 +0200)
* doc/lispintro/emacs-lisp-intro.texi (type-of-animal in detail):
Remove extraneous parenthesis.

doc/lispintro/emacs-lisp-intro.texi

index 46462162ca031e62c57821c1c1d70ab2a903afee..e6c54efba73466ce51e54cebb0b828889413c34c 100644 (file)
@@ -3997,7 +3997,7 @@ looks like this:
 @smallexample
 @group
 (if (equal characteristic "fierce")
-    (message "It is a tiger!")))
+    (message "It is a tiger!"))
 @end group
 @end smallexample