summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Wolfgang Corcoran-Mathe 2021-11-11 13:01:58 -0500
committerGravatar Arthur A. Gleckler 2021-11-11 10:08:45 -0800
commitf567f6b52ed4de80dfaa601e83fbaf0c607c3439 (patch)
tree824ba84dfc9f07eff04d82765d91a460f6e65da7
parentPublish fourth draft. (diff)
Fix typos in examples.
-rw-r--r--srfi-225.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/srfi-225.html b/srfi-225.html
index ab0dd42..657cdcd 100644
--- a/srfi-225.html
+++ b/srfi-225.html
@@ -105,7 +105,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>
@@ -113,7 +113,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>
@@ -121,7 +121,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>