summaryrefslogtreecommitdiffstats
path: root/srfi-225.html
diff options
context:
space:
mode:
authorGravatar Arvydas Silanskas 2021-08-16 23:41:17 +0300
committerGravatar Arvydas Silanskas 2021-08-16 23:41:17 +0300
commite2ffca246692c28222394ce4a927cf61a7f16bc6 (patch)
treec21b90d96db28bb944d9e5a6f64ca8e5936e6045 /srfi-225.html
parenttypos (diff)
work
Diffstat (limited to '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 8c43c74..e4bbca2 100644
--- a/srfi-225.html
+++ b/srfi-225.html
@@ -96,8 +96,8 @@ If the dictionary type does not accept a comparator, <code>#f</code> should be p
<blockquote><pre>; new values are prepended
(dict-set aed dict 7 8) =&gt; ((7 . 8) (1 . 2) (3 . 4) (5 . 6))
(dict-set aed dict 3 5) =&gt; ((3 . 5) (1 . 2) (3 . 4) (5 . 6)</pre></blockquote>
-<p><code>(dict-adjoin</code>&nbsp;<em>dtd dictionary objs</em><code>)</code><br>
-<code>(dict-adjoin!</code>&nbsp;<em>dtd dictionary objs</em><code>)</code></p>
+<p><code>(dict-adjoin</code>&nbsp;<em>dtd dictionary obj</em> ...<code>)</code><br>
+<code>(dict-adjoin!</code>&nbsp;<em>dtd dictionary obj</em> ...<code>)</code></p>
<p>Returns a dictionary that contains all the associations of <em>dictionary</em> plus those specified by <em>objs</em>, which alternate between keys and values. If a key to be added already exists in <em>dictionary</em>, the old value prevails.</p>
<blockquote><pre>; new values are prepended to alists
(dict-adjoin aed dict 7 8) =&gt; ((7 . 8) (1 . 2) (3 . 4) (5 . 6))