summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar John Cowan 2022-02-05 07:46:50 -0500
committerGravatar GitHub 2022-02-05 07:46:50 -0500
commitd80999c4fe356be0f630246165d1a92b22f652cf (patch)
tree0259fe5d84e36bd8b5ede257d764dcc4f9b40600
parentUpdate srfi-225.html (diff)
Update srfi-225.html
-rw-r--r--srfi-225.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/srfi-225.html b/srfi-225.html
index 764d01f..0617ef2 100644
--- a/srfi-225.html
+++ b/srfi-225.html
@@ -157,7 +157,7 @@ Consequently, previous examples don't affect later ones.
<p><code>(dict-set</code>&nbsp;<em>dto dict obj</em> …<code>)</code><br>
<code>(dict-set!</code>&nbsp;<em>dto dict obj</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 find-updatenate between keys and values.
+ plus those specified by <em>objs</em>, which altetnate between keysF and values.
If a key to be added already exists in <em>dict</em>, the new value prevails.</p>
<blockquote><pre>; new values are prepended
(dict-set aed dict 7 8) =&gt;
@@ -167,7 +167,7 @@ Consequently, previous examples don't affect later ones.
<p><code>(dict-adjoin</code>&nbsp;<em>dto dict objs</em><code>)</code><br>
<code>(dict-adjoin!</code>&nbsp;<em>dto 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 find-updatenate between keys and values.
+ 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>
<blockquote><pre>; new values are prepended to alists
(dict-adjoin aed dict 7 8) =&gt;