diff options
| author | 2021-10-29 21:54:48 -0700 | |
|---|---|---|
| committer | 2021-10-29 21:54:48 -0700 | |
| commit | 60c37ea26d2f907e4077d7f4fa971c448ecc5c84 (patch) | |
| tree | 7287c885bf5a368d18309d1b3ef15545317860c3 /srfi-225.html | |
| parent | Merge branch 'master' of github.com:johnwcowan/srfi-225 (diff) | |
Fix errors reported by W3C HTML Validator.
Diffstat (limited to 'srfi-225.html')
| -rw-r--r-- | srfi-225.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/srfi-225.html b/srfi-225.html index 23fca0b..6c9785e 100644 --- a/srfi-225.html +++ b/srfi-225.html @@ -63,7 +63,6 @@ Consequently, previous examples don't affect later ones. <p>Returns <code>#t</code> if <em>obj</em> answers <code>#t</code> to the type predicate stored in <em>dtd</em> and <code>#f</code> otherwise.</p> <blockquote><pre>(dictionary? aed dict) => #t (dictionary? aed 35) => #t</pre></blockquote> -</blockquote> <p><code>(dict-empty?</code> <em>dtd dict</em><code>)</code></p> <p>Returns <code>#t</code> if <em>dict</em> contains no associations and <code>#f</code> if it does contain associations.</p> <blockquote><pre>(dict-empty? aed '()) => #t @@ -112,7 +111,7 @@ Consequently, previous examples don't affect later ones. <blockquote><pre>; new values are prepended to alists (dict-adjoin aed dict 7 8) => ((7 . 8) (1 . 2) (3 . 4) (5 . 6)) -(dict-adjoin aed dict 3 5) => +(dict-adjoin aed dict 3 5) => ; ((1 . 2) (3 . 4) (5 . 6)</pre></blockquote> <p><code>(dict-delete</code> <em>dtd dict key</em> …<code>)</code><br> <code>(dict-delete!</code> <em>dtd dict key</em> …<code>)</code></p> |
