summaryrefslogtreecommitdiffstats
path: root/srfi-225.html
diff options
context:
space:
mode:
authorGravatar Arthur A. Gleckler 2021-10-29 21:54:48 -0700
committerGravatar Arthur A. Gleckler 2021-10-29 21:54:48 -0700
commit60c37ea26d2f907e4077d7f4fa971c448ecc5c84 (patch)
tree7287c885bf5a368d18309d1b3ef15545317860c3 /srfi-225.html
parentMerge 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.html3
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) =&gt; #t
(dictionary? aed 35) =&gt; #t</pre></blockquote>
-</blockquote>
<p><code>(dict-empty?</code>&nbsp;<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 '()) =&gt; #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) =&gt;
((7 . 8) (1 . 2) (3 . 4) (5 . 6))
-(dict-adjoin aed dict 3 5) =&gt
+(dict-adjoin aed dict 3 5) =&gt;
; ((1 . 2) (3 . 4) (5 . 6)</pre></blockquote>
<p><code>(dict-delete</code>&nbsp;<em>dtd dict key</em> …<code>)</code><br>
<code>(dict-delete!</code>&nbsp;<em>dtd dict key</em> …<code>)</code></p>