commit 35de7c15b98bc3b6fdd09b67ef6428439fc091a2
parent 9c985ca486e261c29beb526533ebba254efd6b1e
Author: Ilnar Salimzianov <ilnar@selimcan.org>
Date: Sat, 11 Apr 2020 18:01:24 +0300
fix typo in docs: s/can contains/can contain/ (#225)
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/scribble-doc/scribblings/scribble/reader.scrbl b/scribble-doc/scribblings/scribble/reader.scrbl
@@ -356,7 +356,7 @@ Finally, note that there are currently no special rules for using
@;--------------------------------------------------------------------
@section{The Datum Part}
-The datum part can contains arbitrary Racket expressions, which
+The datum part can contain arbitrary Racket expressions, which
are simply stacked before the body text arguments:
@scribble-examples|==={
diff --git a/scribble-lib/scribble/doc.txt b/scribble-lib/scribble/doc.txt
@@ -181,7 +181,7 @@ in the command itself, which can lead to things like:
** The Datum Part
-The datum part can contains arbitrary Scheme expressions, which are
+The datum part can contain arbitrary Scheme expressions, which are
simply stacked before the body text arguments:
@foo[1 (* 2 3)]{bar} --reads-as--> (foo 1 (* 2 3) "bar")