summaryrefslogtreecommitdiffstats
path: root/srfi-225.html
diff options
context:
space:
mode:
authorGravatar John Cowan 2022-07-14 19:26:33 -0400
committerGravatar John Cowan 2022-07-14 19:26:33 -0400
commit85689befa282c43e97da86943ad25b95eba130d4 (patch)
tree7e7104fb5dade35484d104d637d5d552c830cc6d /srfi-225.html
parentreturn of alists (diff)
parentMerge pull request #4 from arvyy/master (diff)
Merge branch 'master' of https://github.com/johnwcowan/srfi-225
Diffstat (limited to 'srfi-225.html')
-rw-r--r--srfi-225.html11
1 files changed, 2 insertions, 9 deletions
diff --git a/srfi-225.html b/srfi-225.html
index 8b0b432..157910e 100644
--- a/srfi-225.html
+++ b/srfi-225.html
@@ -359,7 +359,7 @@ key <em>key</em>.
as a key and value of <em>dict</em> as if by <code>dict-set</code>, eventually returning the new value of <em>dict</em>.
If invoked on an end-of-file object, no action is taken and <em>dict</em> is returned.</p>
<p><code>(dict-adjoin-accumulator</code>&nbsp;<em>dto dict</em><code>)</code></p>
-<p>The same as <code>dict-set(!)-accumulator</code>, except using <code>dict-adjoin</code>. </p>
+<p>The same as <code>dict-set-accumulator</code>, except using <code>dict-adjoin</code>. </p>
<h3 id="dictionary-type-object-procedures">Dictionary type object procedures (non-generic)</h3>
<p><code>(dto?</code>&nbsp;<em>obj</em><code>)</code></p>
<p>Returns <code>#t</code> if <em>obj</em> is a DTO, and <code>#f</code> otherwise.</p>
@@ -536,7 +536,7 @@ new dictionary types that may not have complete dictionary APIs:</p>
<dd>dict-fold</dd>
<dt>dict-for-each</dt>
- <dd>dict-map or dict-map!</dd>
+ <dd>dict-map</dd>
<dt>dict-&gt;generator</dt>
<dd>dict-for-each</dd>
@@ -544,15 +544,8 @@ new dictionary types that may not have complete dictionary APIs:</p>
<dt>dict-set-accumulator</dt>
<dd>dict-set</dd>
- <dt>dict-set!-accumulator</dt>
- <dd>dict-set!</dd>
-
<dt>dict-adjoin-accumulator</dt>
<dd>dict-set</dd>
-
- <dt>dict-adjoin!-accumulator</dt>
- <dd>dict-adjoin!</dd>
-
</dl>
</code>