summaryrefslogtreecommitdiffstats
path: root/srfi-225.html
diff options
context:
space:
mode:
authorGravatar Arthur A. Gleckler 2022-05-20 13:50:42 -0700
committerGravatar Arthur A. Gleckler 2022-05-20 13:50:42 -0700
commit29756b00c0642628bd7fd77e785685aaf6532ff0 (patch)
treedefee22bc719949a09a0125528cd30feb49afd7d /srfi-225.html
parentLink to official Github repo. (diff)
Fix two examples.
Diffstat (limited to 'srfi-225.html')
-rw-r--r--srfi-225.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/srfi-225.html b/srfi-225.html
index ec38acf..dd5982c 100644
--- a/srfi-225.html
+++ b/srfi-225.html
@@ -141,14 +141,14 @@ Consequently, previous examples don't affect later ones.
then invokes the thunk <em>failure</em> and returns its result.
The default value of <em>failure</em> signals an error; the default value of <em>success</em> is the identity procedure.</p>
<blockquote><pre>(dict-ref aed dict 1 (lambda () &#39;()) list) =&gt;
- (1) ; Success wraps value in a list
+ (2) ; Success wraps value in a list
(dict-ref aed dict 2 (lambda () &#39;()) list) =&gt;
() ; Failure returns empty list</pre></blockquote>
<p><code>(dict-ref/default</code>&nbsp;<em>dto dict key default</em><code>)</code></p>
<p>If <em>key</em> is the same as some key of <em>dict</em>, returns the corresponding value.
If not, returns <em>default</em>.</p>
-<blockquote><pre>(dict-ref/default aed dict 1 #f) =&gt; 1
-(dict-ref/default aed dict 1 #f) =&gt; #f</pre></blockquote>
+<blockquote><pre>(dict-ref/default aed dict 1 #f) =&gt; 2
+(dict-ref/default aed dict 2 #f) =&gt; #f</pre></blockquote>
<h3 id="update-procedures">Update procedures</h3>
<p>All update procedures exist in pairs, with and without a final <code>!</code>.
The descriptions apply to the procedures without <code>!</code>;
03:01:11 +0000'>2002-12-24update iso API for multi-channel reception and new packet buffer layoutGravatar dmaas 4-123/+236 2002-12-20oops, irq_interval needs to be signedGravatar anonymous 1-1/+1 2002-12-20dmaas - renamed exported arm definitions into the raw1394_ namespace; brought...Gravatar anonymous 3-124/+48 2002-12-16rawiso updates:Gravatar dmaas 3-18/+25 2002-11-18fix cplusplus extern C blockGravatar ddennedy 1-4/+4 2002-11-18merged rawiso branchGravatar ddennedy 7-6/+488