From b494bc1743910f65e3062f0ced1a212bb72df772 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Fri, 2 Sep 2016 10:12:28 +0200 Subject: [PATCH] Fix typo in Nil documentation * doc/ref/api-languages.texi (Nil): Fix typo. Thanks to Wilfred Hughes for the report. Fixes #24342. --- doc/ref/api-languages.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ref/api-languages.texi b/doc/ref/api-languages.texi index fb42987d9..dd4f223df 100644 --- a/doc/ref/api-languages.texi +++ b/doc/ref/api-languages.texi @@ -229,7 +229,7 @@ Here are correct versions of the above examples: This problem has a mirror-image case in Elisp: @example -(deffn my-falsep (x) +(defun my-falsep (x) (if (eq x nil) t nil))