summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar John Cowan 2022-09-19 22:05:39 -0400
committerGravatar John Cowan 2022-09-19 22:05:39 -0400
commita194496afd83b5bf1fef0f7dceab92a7ff95e133 (patch)
tree902834ee7db2bd13da942d36e257e2e26c6db98a
parenteditorial (diff)
editorial
-rw-r--r--srfi-225.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/srfi-225.html b/srfi-225.html
index 665391a..5ca87dc 100644
--- a/srfi-225.html
+++ b/srfi-225.html
@@ -274,7 +274,7 @@ key <em>key</em>.
<p><code>(dict-count</code>&nbsp;<em>dto pred dict</em><code>)</code></p>
<p>Passes each association of dictionary as two arguments to <em>pred</em>
and returns the number of times that <em>pred</em> returned true as an an exact integer.</p>
-//blockquote><pre>(dict-count dto (lambda (k v) (even? k)) dict) =&gt; 0</pre></blockquote>
+<blockquote><pre>(dict-count dto (lambda (k v) (even? k)) dict) =&gt; 0</pre></blockquote>
<p><code>(dict-any</code>&nbsp;<em>dto pred dict</em><code>)</code></p>
<p>Passes each association of <em>dict</em> as two arguments to <em>pred</em>
and returns the value of the first call to <em>pred</em> that returns true,