summaryrefslogtreecommitdiffstats
path: root/srfi-225.html
diff options
context:
space:
mode:
authorGravatar Arthur A. Gleckler 2021-07-18 20:22:55 -0700
committerGravatar Arthur A. Gleckler 2021-07-18 20:23:06 -0700
commitcffa45160b97e18903a73b02be66ed689105717a (patch)
treea90d5432376b9a32d03343c1c85a7457b29de4c3 /srfi-225.html
parentIgnore "Dictionaries.log". (diff)
Ignore trailing whitespace.
Diffstat (limited to 'srfi-225.html')
-rw-r--r--srfi-225.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/srfi-225.html b/srfi-225.html
index fef8e5a..5f2703c 100644
--- a/srfi-225.html
+++ b/srfi-225.html
@@ -136,8 +136,8 @@ Otherwise, returns two values, a dictionary that contains all the associations o
<p>Here are four examples of <code>dict-search!</code>,
one for each of the four continuations:
<blockquote><pre>
- ;; ignore
- (define-values
+ ;; ignore
+ (define-values
(dict value)
(dict-search! (alist->dict '((a . b))) 'c
(lambda (insert ignore)
@@ -148,7 +148,7 @@ one for each of the four continuations:
value => 'foo
;; insert
- (define-values
+ (define-values
(dict value)
(dict-search! (alist->dict '((a . b))) 'c
(lambda (insert ignore)
@@ -160,7 +160,7 @@ one for each of the four continuations:
value => foo
;; update
- (define-values
+ (define-values
(dict value)
(dict-search! (alist->dict '((a . b))) 'a
(lambda args
@@ -171,7 +171,7 @@ one for each of the four continuations:
value => foo
;; delete
- (define-values
+ (define-values
(dict value)
(dict-search! (alist->dict '((a . b) (c . d))) 'a
(lambda args
@@ -234,7 +234,7 @@ one for each of the four continuations:
in the sample implementation; the procedures referred to are also in
that file.<p>
<blockquote><pre>
- (register-dictionary-type!
+ (register-dictionary-type!
'dictionary? alist?
'dict-map! alist-map!
'dict-filter! alist-filter!