1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

doc: cookbook: Clarify what keywords are.

* doc/guix-cookbook.texi (A Scheme Crash Course): Clarify what keywords
are.
This commit is contained in:
Ludovic Courtès
2020-10-15 23:50:11 +02:00
parent 850a2f7417
commit c0001b8bfc

View File

@@ -250,8 +250,10 @@ definitions.
@end lisp
@item
The keyword syntax is @code{#:}; it is used to create unique identifiers.
@pxref{Keywords,,, guile, GNU Guile Reference Manual}.
@dfn{Keywords} are typically used to identify the named parameters of a
procedure. They are prefixed by @code{#:} (hash, colon) followed by
alphanumeric characters: @code{#:like-this}.
@xref{Keywords,,, guile, GNU Guile Reference Manual}.
@item
The percentage @code{%} is typically used for read-only global variables in