From 87e82d26df3cd49d9b21893e04d5ef3977f37db8 Mon Sep 17 00:00:00 2001 From: Abbas Shams Date: Tue, 6 Jun 2023 02:41:39 -0400 Subject: [PATCH] fix(chap3): correct some grammatical issues I added some missed auxiliary verbs to the examples. --- manuscript/chapter3.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/manuscript/chapter3.md b/manuscript/chapter3.md index efb53d8..5288adb 100644 --- a/manuscript/chapter3.md +++ b/manuscript/chapter3.md @@ -258,7 +258,7 @@ Blockquotes can contain multiple paragraphs. Add a `>` on the blank lines betwee {title="Markdown"} ~~~~~~~ -> This the first paragraph. +> This is the first paragraph. > > And this is the second paragraph. ~~~~~~~ @@ -266,14 +266,14 @@ Blockquotes can contain multiple paragraphs. Add a `>` on the blank lines betwee {title="HTML", lang=html} ~~~~~~~
-

This the first paragraph.

+

This is the first paragraph.

And this is the second paragraph.

~~~~~~~ The rendered output looks like this: -> This the first paragraph. +> This is the first paragraph. > > And this is the second paragraph. @@ -283,7 +283,7 @@ Blockquotes can be nested. Add a `>>` in front of the paragraph you want to nest {title="Markdown"} ~~~~~~~ -> This the first paragraph. +> This is the first paragraph. > >> And this is the nested paragraph. ~~~~~~~ @@ -291,7 +291,7 @@ Blockquotes can be nested. Add a `>>` in front of the paragraph you want to nest {title="HTML", lang=html} ~~~~~~~
-

This the first paragraph.

+

This is the first paragraph.

And this is the nested paragraph.

@@ -300,7 +300,7 @@ Blockquotes can be nested. Add a `>>` in front of the paragraph you want to nest The rendered output looks like this: -> This the first paragraph. +> This is the first paragraph. > >> And this is the nested paragraph.