summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arthur A. Gleckler 2021-07-26 21:53:51 -0700
committerGravatar Arthur A. Gleckler 2021-07-26 22:37:16 -0700
commit318c5ee1e4dbb3b253c474e0c882a256b90d9a6d (patch)
tree895d0b49b416a4966a431bedd9e17adc4748664d
parentpaired mutators (diff)
Fix example.
-rw-r--r--srfi-225.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/srfi-225.html b/srfi-225.html
index 1a0ffff..933334e 100644
--- a/srfi-225.html
+++ b/srfi-225.html
@@ -67,7 +67,7 @@ Consequently, previous examples don't affect later ones.
<h3 id="predicates">Predicates</h3>
<p><code>(dictionary?</code>&nbsp;<em>dtd obj</em><code>)</code></p>
<p>Returns <code>#t</code> if <em>obj</em> answers <code>#t</code> to some registered predicate, and <code>#f</code> otherwise.</p>
-<blockquote><pre>(define aed dict (list '(1 . 2) '(3 . 4) '(5 . 6)))
+<blockquote><pre>(define dict (list '(1 . 2) '(3 . 4) '(5 . 6)))
(dictionary? aed dict) =&gt; #t</pre></blockquote>
<p><code>(dict-empty?</code>&nbsp;<code>)</code></p>
<p>Returns <code>#t</code> if <em>dictionary</em> contains no associations and <code>#f</code> if it does contain associations.</p>