diff options
| author | 2022-02-05 07:46:50 -0500 | |
|---|---|---|
| committer | 2022-02-05 07:46:50 -0500 | |
| commit | d80999c4fe356be0f630246165d1a92b22f652cf (patch) | |
| tree | 0259fe5d84e36bd8b5ede257d764dcc4f9b40600 | |
| parent | Update srfi-225.html (diff) | |
Update srfi-225.html
| -rw-r--r-- | srfi-225.html | 4 |
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> <em>dto dict obj</em> …<code>)</code><br> <code>(dict-set!</code> <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) => @@ -167,7 +167,7 @@ Consequently, previous examples don't affect later ones. <p><code>(dict-adjoin</code> <em>dto dict objs</em><code>)</code><br> <code>(dict-adjoin!</code> <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) => |
