From 35de7c15b98bc3b6fdd09b67ef6428439fc091a2 Mon Sep 17 00:00:00 2001 From: Ilnar Salimzianov Date: Sat, 11 Apr 2020 18:01:24 +0300 Subject: [PATCH] fix typo in docs: s/can contains/can contain/ (#225) --- scribble-doc/scribblings/scribble/reader.scrbl | 2 +- scribble-lib/scribble/doc.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scribble-doc/scribblings/scribble/reader.scrbl b/scribble-doc/scribblings/scribble/reader.scrbl index af8fc870..77e3882e 100644 --- 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 index 40d16d86..7d9c564b 100644 --- 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")