]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix count of no-op functions (bug#68375)
authorXiyue Deng <manphiz@gmail.com>
Wed, 3 Jan 2024 00:31:30 +0000 (16:31 -0800)
committerEli Zaretskii <eliz@gnu.org>
Thu, 11 Jan 2024 10:39:43 +0000 (12:39 +0200)
It looks like there are actually three kinds of no-op functions.

* doc/lispref/functions.texi (Calling Functions): Fix count and
plural of no-op functions.

Copyright-paperwork-exempt: yes

doc/lispref/functions.texi

index a32b92955c58280e2c6018a38b5031d8ef2a8ce2..eac5b91e76ab2b97131c2e48873394ce60b42d0a 100644 (file)
@@ -980,8 +980,8 @@ lists) and call them using @code{funcall} or @code{apply}.  Functions
 that accept function arguments are often called @dfn{functionals}.
 
   Sometimes, when you call a functional, it is useful to supply a no-op
-function as the argument.  Here are two different kinds of no-op
-function:
+function as the argument.  Here are three different kinds of no-op
+functions:
 
 @defun identity argument
 This function returns @var{argument} and has no side effects.