summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar John Cowan 2021-11-11 16:48:29 -0500
committerGravatar John Cowan 2021-11-11 16:48:29 -0500
commita5a9148fe06687ac59b62c9e34793fb38168e2d2 (patch)
treefc60f1f01c2ad9571b92ea7ff84dfc8c3e1c79b9
parentMerge remote-tracking branch 'arvyy/master' (diff)
parentFix typos in examples. (diff)
Merge remote-tracking branch 'upstream/master'
-rw-r--r--srfi-225.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/srfi-225.html b/srfi-225.html
index 75fe5e9..89c842f 100644
--- a/srfi-225.html
+++ b/srfi-225.html
@@ -108,7 +108,7 @@ Consequently, previous examples don't affect later ones.
(dict-set aed dict 7 8) =>
((7 . 8) (1 . 2) (3 . 4) (5 . 6))
(dict-set aed dict 3 5) =>
- ((3 . 5) (1 . 2) (3 . 4) (5 . 6)</pre></blockquote>
+ ((3 . 5) (1 . 2) (3 . 4) (5 . 6))</pre></blockquote>
<p><code>(dict-adjoin</code>&nbsp;<em>dtd dict objs</em><code>)</code><br>
<code>(dict-adjoin!</code>&nbsp;<em>dtd dict objs</em><code>)</code></p>
<p>Returns a dictionary that contains all the associations of <em>dict</em> plus those specified by <em>objs</em>, which alternate between keys and values. If a key to be added already exists in <em>dict</em>, the old value prevails.</p>
@@ -116,7 +116,7 @@ Consequently, previous examples don't affect later ones.
(dict-adjoin aed dict 7 8) =&gt;
((7 . 8) (1 . 2) (3 . 4) (5 . 6))
(dict-adjoin aed dict 3 5) =&gt;
-; ((1 . 2) (3 . 4) (5 . 6)</pre></blockquote>
+ ((1 . 2) (3 . 4) (5 . 6))</pre></blockquote>
<p><code>(dict-delete</code>&nbsp;<em>dtd dict key</em> …<code>)</code><br>
<code>(dict-delete!</code>&nbsp;<em>dtd dict key</em> …<code>)</code></p>
<p>Returns a dictionary that contains all the associations of <em>dict</em> except those whose keys are the same as one of the <em>keys</em>.</p>
@@ -124,7 +124,7 @@ Consequently, previous examples don't affect later ones.
(dict-delete aed dict 1 3) =&gt;
((5. 6)) ; may share
(dict-delete aed dict 5) =&gt;
- ((1 . 2) (3 . 4)</pre></blockquote>
+ ((1 . 2) (3 . 4))</pre></blockquote>
<p><code>(dict-delete-all</code>&nbsp;<em>dtd dict keylist</em><code>)</code><br>
<code>(dict-delete-all!</code>&nbsp;<em>dtd dict keylist</em><code>)</code></p>
<p>Returns a dictionary with all the associations of <em>dict</em> except those whose keys are the same as some member of <em>keylist</em>.</p>