diff options
author | Andy Wingo <wingo@pobox.com> | 2016-09-02 10:12:28 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2016-09-02 10:12:28 +0200 |
commit | b494bc1743910f65e3062f0ced1a212bb72df772 (patch) | |
tree | ebbb6cb24c654fc9566ce8edba4c9eba3cdc38d7 | |
parent | 3b2cd09fe277ce3dc02f32962cfc82b0c201691c (diff) | |
download | guile-b494bc1743910f65e3062f0ced1a212bb72df772.tar.gz |
Fix typo in Nil documentation
* doc/ref/api-languages.texi (Nil): Fix typo. Thanks to Wilfred Hughes
for the report. Fixes #24342.
-rw-r--r-- | doc/ref/api-languages.texi | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |