home: hub: zuo

Download patch

ref: 15ebcbd3f4c0edfdcbb13c30692c3d45ab8d2443
parent: 464aae9ae90dcb43ab003b922e4ae4d08611c55b
author: jim <jmcnuttc@gmail.com>
date: Mon Aug 14 16:32:41 CDT 2023

zuo-doc: typos

--- a/zuo-doc/lang-zuo.scrbl
+++ b/zuo-doc/lang-zuo.scrbl
@@ -69,7 +69,7 @@
 macro implementations, both variables and macros. For example, an
 imported macro might be used both to implement a macro body and in
 nearby run-time code or even run-time code generated by the macro's
-expansion. The absence of a phase separation is related to way that
+expansion. The absence of a phase separation is related to the way that
 each module is evaluated only once, and it's made workable in part by
 the absence of mutable data structures in Zuo, and in part because
 there is no support for compiling a @racketmodname[zuo] module and
@@ -1209,7 +1209,7 @@
 @racket[name] refers to a link, information is reported about the
 link; otherwise, information is reported about the target of a link.
 
-If @racket[name] is a valid path but such file, directory, or link exists,
+If @racket[name] is a valid path but no such file, directory, or link exists,
 the result is @racket[#f]. If accessing @racket[name] encounters an error
 (e.g., @racket[name] uses a file as a directory or permission is denied),
 then @racket[#f] is reported instead of an error if @racket[false-on-error?].
--- a/zuo-doc/reader.scrbl
+++ b/zuo-doc/reader.scrbl
@@ -66,7 +66,7 @@
 
 @section[#:tag "read-string"]{Reading Strings}
 
-A string starts @litchar{#"} or @litchar{"} and ends with a matching
+A string starts with @litchar{#"} or @litchar{"} and ends with a matching
 @litchar{"}. Any character is allowed in a string, except for a
 newline or return character. The following escapes are supported with
 the usual meaning: @litchar{\"}, @litchar{\\}, @litchar{\n},