diff options
| author | 2021-07-26 21:53:51 -0700 | |
|---|---|---|
| committer | 2021-07-26 22:37:16 -0700 | |
| commit | 318c5ee1e4dbb3b253c474e0c882a256b90d9a6d (patch) | |
| tree | 895d0b49b416a4966a431bedd9e17adc4748664d | |
| parent | paired mutators (diff) | |
Fix example.
| -rw-r--r-- | srfi-225.html | 2 |
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> <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) => #t</pre></blockquote> <p><code>(dict-empty?</code> <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> |
