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
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

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