diff options
author | Eli Zaretskii <eliz@gnu.org> | 2025-03-25 14:37:17 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2025-03-25 14:37:17 +0200 |
commit | 6a3e2b88d26db4f703c566cf9b508f8c83ea8850 (patch) | |
tree | fd4b684716fd7bc8fb5e896f568e9e785efc9d74 /doc/lispref/objects.texi | |
parent | 0c32f7521b12c13ac0c7fff09981054e106989c6 (diff) | |
download | emacs-6a3e2b88d26db4f703c566cf9b508f8c83ea8850.tar.gz emacs-6a3e2b88d26db4f703c566cf9b508f8c83ea8850.tar.bz2 emacs-6a3e2b88d26db4f703c566cf9b508f8c83ea8850.zip |
; Improve documentation of "function types"
* doc/lispref/functions.texi (Declare Form):
* doc/lispref/objects.texi (Type Specifiers): Improve wording and
indexing.
Diffstat (limited to 'doc/lispref/objects.texi')
-rw-r--r-- | doc/lispref/objects.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi index 630765213a2..264a780f93d 100644 --- a/doc/lispref/objects.texi +++ b/doc/lispref/objects.texi @@ -1552,9 +1552,9 @@ types and the return type of a function. Argument types can be interleaved with symbols @code{&optional} and @code{&rest} to match the function's arguments (@pxref{Argument List}). -The type specifier represent a function whose first parameter is of type -@code{symbol}, the second optional parameter is of type @code{float}, -and which returns an @code{integer}: +The following type specifier represents a function whose first parameter +is of type @code{symbol}, the second optional parameter is of type +@code{float}, and which returns an @code{integer}: @example (function (symbol &optional float) integer) |