aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-02-21 03:21:43 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2023-02-21 19:42:32 +0100
commitb12c86ccd5b15e1c8c161db911375b6e4c419c0f (patch)
tree5ab1d007ebc0dc267fca6b2c67125a5c84397c11 /doc
parentFix seeding of UUIDs. (diff)
downloadcalp-b12c86ccd5b15e1c8c161db911375b6e4c419c0f.tar.gz
calp-b12c86ccd5b15e1c8c161db911375b6e4c419c0f.tar.xz
Change kvlist->assq to return pairs.
Diffstat (limited to 'doc')
-rw-r--r--doc/ref/guile/util.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/guile/util.texi b/doc/ref/guile/util.texi
index 72463407..1b4228cd 100644
--- a/doc/ref/guile/util.texi
+++ b/doc/ref/guile/util.texi
@@ -175,8 +175,8 @@ pairs of symbols and values.
@lisp
(kvlist->assq '(#:a 1 #:b "Hello"))
-⇒ ((a 1)
- (b "Hello"))
+⇒ ((a . 1)
+ (b . "Hello"))
@end lisp
@end defun