From 7d613e2d4fba5da754aae0a516f3a21f8cb7b81a Mon Sep 17 00:00:00 2001
From: Wolfgang Corcoran-Mathe <wcm@sigwinch.xyz>
Date: Sat, 3 Sep 2022 09:39:15 -0400
Subject: [PATCH] Copyedits.

---
 srfi-235.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srfi-235.html b/srfi-235.html
index aa7a238..c2fb9a7 100644
--- a/srfi-235.html
+++ b/srfi-235.html
@@ -129,7 +129,7 @@ and then applies <em>reducer</em> to all of the results.</p>
 <p><code>((right-section</code>&nbsp;<em>proc arg</em> ...<code>)</code> <em>obj</em> ...<code>)</code></p>
 <p>Applies <em>proc</em> to <em>objs</em> concatenated with the value of <code>(reverse</code>&nbsp;<em>args</em><code>)</code>.</p>
 <blockquote><pre>(map (right-section - 1) '(1 2 3)) => (0 1 2)</pre></blockquote>
-<p><code>((apply-chain</code>&nbsp;<em>proc</em> ...<code>)</code> arg ...)`</p>
+<p><code>((apply-chain</code>&nbsp;<em>proc</em> ...<code>)</code> arg ...)</p>
 <p>Applies the last <em>proc</em> to <em>args</em> returning zero or more values,
 then applies the previous <em>proc</em> to the values, returning more values,
 until the first proc has been invoked; its values are returned.
@@ -185,7 +185,7 @@ Otherwise, invokes <em>else-thunk</em> and returns what it returns.</p>
 <p><code>(when-procedure</code>&nbsp;<em>value thunk</em> ...<code>)</code><br><code>(unless-procedure</code>&nbsp;<em>value thunk</em> ...<code>)</code></p>
 <p>If <em>value</em> is false/true, immediately returns.
 Otherwise, invokes each <em>thunk</em> in turn and then returns.
-n all cases an unspecified value is returned.</p>
+In all cases an unspecified value is returned.</p>
 <blockquote><pre>
 (when-procedure #t a b c) => unspecified ;prints "abc"
 (when-procedure #f a b c) => unspecified ;prints nothing
@@ -209,7 +209,7 @@ invokes <em>else-thunk</em> (if present) and returns what it returns.
 If <em>else-thunk</em> is not present, the result is undefined.
 <blockquote><pre>
 (case-procedure 0 `((1 . ,a) (2 . ,z) (3 . ,c)) z) => undefined ;displays "z"
-(case-procedure 0 `((1 . ,a) (2 . ,z) (3 . ,c))) => undefined ;displays nothing 
+(case-procedure 0 `((1 . ,a) (2 . ,z) (3 . ,c))) => undefined ;displays nothing
 (case-procedure 2 `((1 . ,a) (2 . ,b) (3 . ,c))) => undefined ;displays "b"
 </pre></blockquote>
 <p><code>(lazy-and-procedure</code>&nbsp;<em>thunk</em> ...<code>)</code></p>
-- 
2.35.3

