1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

Fix typo in Nil documentation

* doc/ref/api-languages.texi (Nil): Fix typo.  Thanks to Wilfred Hughes
  for the report.  Fixes #24342.
This commit is contained in:
Andy Wingo 2016-09-02 10:12:28 +02:00
parent 3b2cd09fe2
commit b494bc1743

View file

@ -229,7 +229,7 @@ Here are correct versions of the above examples:
This problem has a mirror-image case in Elisp: This problem has a mirror-image case in Elisp:
@example @example
(deffn my-falsep (x) (defun my-falsep (x)
(if (eq x nil) (if (eq x nil)
t t
nil)) nil))