commit 37bae24669eda60da908d107d3460b5184c8677c
parent 62bb5d639fbaf55e3d23465086259470e97ed5b5
Author: Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
Date: Tue, 18 Aug 2015 16:11:49 +0200
Fix a typo.
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/srfi-123.html b/srfi-123.html
@@ -93,7 +93,7 @@ struct ;=> #(a (x y #u8(4 2 3)) c)</code></pre>
<li><code>(ref* object field field* ...)</code> (procedure)</li>
<li><code>(~ object field field* ...)</code></li>
</ul>
-<p>The semantics is of this procedure is as follows:</p>
+<p>The semantics of this procedure is as follows:</p>
<pre><code>(ref* object field) = (ref object field)
(ref* object field field+ ...) = (ref* (ref object field) field+ ...)</code></pre>
<p>It has an associated SRFI-17 setter, which does the expected thing:</p>
diff --git a/srfi-123.md b/srfi-123.md
@@ -202,7 +202,7 @@ type's field names are allowed.
- `(ref* object field field* ...)` (procedure)
- `(~ object field field* ...)`
-The semantics is of this procedure is as follows:
+The semantics of this procedure is as follows:
(ref* object field) = (ref object field)
(ref* object field field+ ...) = (ref* (ref object field) field+ ...)