Skip to content

Commit bbfdd55

Browse files
merriamwaylan
authored andcommitted
Fix typo, in the ten cut and pasted versions
1 parent 102e01c commit bbfdd55

16 files changed

+26
-26
lines changed

tests/basic/markdown-documentation-basics.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h2>Paragraphs, Headers, Blockquotes</h2>
2323
<p>A paragraph is simply one or more consecutive lines of text, separated
2424
by one or more blank lines. (A blank line is any line that looks like a
2525
blank line -- a line containing nothing spaces or tabs is considered
26-
blank.) Normal paragraphs should not be intended with spaces or tabs.</p>
26+
blank.) Normal paragraphs should not be indented with spaces or tabs.</p>
2727
<p>Markdown offers two styles of headers: <em>Setext</em> and <em>atx</em>.
2828
Setext-style headers for <code>&lt;h1&gt;</code> and <code>&lt;h2&gt;</code> are created by
2929
"underlining" with equal signs (<code>=</code>) and hyphens (<code>-</code>), respectively.

tests/basic/markdown-documentation-basics.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ can [see the source for it by adding '.text' to the URL] [src].
3737
A paragraph is simply one or more consecutive lines of text, separated
3838
by one or more blank lines. (A blank line is any line that looks like a
3939
blank line -- a line containing nothing spaces or tabs is considered
40-
blank.) Normal paragraphs should not be intended with spaces or tabs.
40+
blank.) Normal paragraphs should not be indented with spaces or tabs.
4141

4242
Markdown offers two styles of headers: *Setext* and *atx*.
4343
Setext-style headers for `<h1>` and `<h2>` are created by

tests/basic/markdown-syntax.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ <h3 id="p">Paragraphs and Line Breaks</h3>
151151
<p>A paragraph is simply one or more consecutive lines of text, separated
152152
by one or more blank lines. (A blank line is any line that looks like a
153153
blank line -- a line containing nothing but spaces or tabs is considered
154-
blank.) Normal paragraphs should not be intended with spaces or tabs.</p>
154+
blank.) Normal paragraphs should not be indented with spaces or tabs.</p>
155155
<p>The implication of the "one or more consecutive lines of text" rule is
156156
that Markdown supports "hard-wrapped" text paragraphs. This differs
157157
significantly from most other text-to-HTML formatters (including Movable
@@ -328,7 +328,7 @@ <h3 id="list">Lists</h3>
328328
&lt;/ul&gt;
329329
</code></pre>
330330
<p>List items may consist of multiple paragraphs. Each subsequent
331-
paragraph in a list item must be intended by either 4 spaces
331+
paragraph in a list item must be indented by either 4 spaces
332332
or one tab:</p>
333333
<pre><code>1. This is a list item with two paragraphs. Lorem ipsum dolor
334334
sit amet, consectetuer adipiscing elit. Aliquam hendrerit

tests/basic/markdown-syntax.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ and `&` in your example code needs to be escaped.)
186186
A paragraph is simply one or more consecutive lines of text, separated
187187
by one or more blank lines. (A blank line is any line that looks like a
188188
blank line -- a line containing nothing but spaces or tabs is considered
189-
blank.) Normal paragraphs should not be intended with spaces or tabs.
189+
blank.) Normal paragraphs should not be indented with spaces or tabs.
190190

191191
The implication of the "one or more consecutive lines of text" rule is
192192
that Markdown supports "hard-wrapped" text paragraphs. This differs
@@ -401,7 +401,7 @@ will turn into:
401401
</ul>
402402

403403
List items may consist of multiple paragraphs. Each subsequent
404-
paragraph in a list item must be intended by either 4 spaces
404+
paragraph in a list item must be indented by either 4 spaces
405405
or one tab:
406406

407407
1. This is a list item with two paragraphs. Lorem ipsum dolor

tests/extensions/extra/markdown-syntax.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ <h3 id="p">Paragraphs and Line Breaks</h3>
151151
<p>A paragraph is simply one or more consecutive lines of text, separated
152152
by one or more blank lines. (A blank line is any line that looks like a
153153
blank line -- a line containing nothing but spaces or tabs is considered
154-
blank.) Normal paragraphs should not be intended with spaces or tabs.</p>
154+
blank.) Normal paragraphs should not be indented with spaces or tabs.</p>
155155
<p>The implication of the "one or more consecutive lines of text" rule is
156156
that Markdown supports "hard-wrapped" text paragraphs. This differs
157157
significantly from most other text-to-HTML formatters (including Movable
@@ -328,7 +328,7 @@ <h3 id="list">Lists</h3>
328328
&lt;/ul&gt;
329329
</code></pre>
330330
<p>List items may consist of multiple paragraphs. Each subsequent
331-
paragraph in a list item must be intended by either 4 spaces
331+
paragraph in a list item must be indented by either 4 spaces
332332
or one tab:</p>
333333
<pre><code>1. This is a list item with two paragraphs. Lorem ipsum dolor
334334
sit amet, consectetuer adipiscing elit. Aliquam hendrerit

tests/extensions/extra/markdown-syntax.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ and `&` in your example code needs to be escaped.)
186186
A paragraph is simply one or more consecutive lines of text, separated
187187
by one or more blank lines. (A blank line is any line that looks like a
188188
blank line -- a line containing nothing but spaces or tabs is considered
189-
blank.) Normal paragraphs should not be intended with spaces or tabs.
189+
blank.) Normal paragraphs should not be indented with spaces or tabs.
190190

191191
The implication of the "one or more consecutive lines of text" rule is
192192
that Markdown supports "hard-wrapped" text paragraphs. This differs
@@ -401,7 +401,7 @@ will turn into:
401401
</ul>
402402

403403
List items may consist of multiple paragraphs. Each subsequent
404-
paragraph in a list item must be intended by either 4 spaces
404+
paragraph in a list item must be indented by either 4 spaces
405405
or one tab:
406406

407407
1. This is a list item with two paragraphs. Lorem ipsum dolor

tests/extensions/toc.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ <h2 id="paragraphs-and-line-breaks">Paragraphs and Line Breaks</h2>
135135
<p>A paragraph is simply one or more consecutive lines of text, separated
136136
by one or more blank lines. (A blank line is any line that looks like a
137137
blank line -- a line containing nothing but spaces or tabs is considered
138-
blank.) Normal paragraphs should not be intended with spaces or tabs.</p>
138+
blank.) Normal paragraphs should not be indented with spaces or tabs.</p>
139139
<p>The implication of the "one or more consecutive lines of text" rule is
140140
that Markdown supports "hard-wrapped" text paragraphs. This differs
141141
significantly from most other text-to-HTML formatters (including Movable
@@ -309,7 +309,7 @@ <h2 id="lists">Lists</h2>
309309
&lt;/ul&gt;
310310
</code></pre>
311311
<p>List items may consist of multiple paragraphs. Each subsequent
312-
paragraph in a list item must be intended by either 4 spaces
312+
paragraph in a list item must be indented by either 4 spaces
313313
or one tab:</p>
314314
<pre><code>1. This is a list item with two paragraphs. Lorem ipsum dolor
315315
sit amet, consectetuer adipiscing elit. Aliquam hendrerit

tests/extensions/toc.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ and `&` in your example code needs to be escaped.)
149149
A paragraph is simply one or more consecutive lines of text, separated
150150
by one or more blank lines. (A blank line is any line that looks like a
151151
blank line -- a line containing nothing but spaces or tabs is considered
152-
blank.) Normal paragraphs should not be intended with spaces or tabs.
152+
blank.) Normal paragraphs should not be indented with spaces or tabs.
153153

154154
The implication of the "one or more consecutive lines of text" rule is
155155
that Markdown supports "hard-wrapped" text paragraphs. This differs
@@ -364,7 +364,7 @@ will turn into:
364364
</ul>
365365

366366
List items may consist of multiple paragraphs. Each subsequent
367-
paragraph in a list item must be intended by either 4 spaces
367+
paragraph in a list item must be indented by either 4 spaces
368368
or one tab:
369369

370370
1. This is a list item with two paragraphs. Lorem ipsum dolor

tests/pl/Tests_2004/Markdown Documentation - Basics.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ <h2>Paragraphs, Headers, Blockquotes</h2>
2929
<p>A paragraph is simply one or more consecutive lines of text, separated
3030
by one or more blank lines. (A blank line is any line that looks like a
3131
blank line -- a line containing nothing spaces or tabs is considered
32-
blank.) Normal paragraphs should not be intended with spaces or tabs.</p>
32+
blank.) Normal paragraphs should not be indented with spaces or tabs.</p>
3333

3434
<p>Markdown offers two styles of headers: <em>Setext</em> and <em>atx</em>.
3535
Setext-style headers for <code>&lt;h1&gt;</code> and <code>&lt;h2&gt;</code> are created by

tests/pl/Tests_2004/Markdown Documentation - Basics.text

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ can [see the source for it by adding '.text' to the URL] [src].
3737
A paragraph is simply one or more consecutive lines of text, separated
3838
by one or more blank lines. (A blank line is any line that looks like a
3939
blank line -- a line containing nothing spaces or tabs is considered
40-
blank.) Normal paragraphs should not be intended with spaces or tabs.
40+
blank.) Normal paragraphs should not be indented with spaces or tabs.
4141

4242
Markdown offers two styles of headers: *Setext* and *atx*.
4343
Setext-style headers for `<h1>` and `<h2>` are created by

tests/pl/Tests_2004/Markdown Documentation - Syntax.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ <h3 id="p">Paragraphs and Line Breaks</h3>
186186
<p>A paragraph is simply one or more consecutive lines of text, separated
187187
by one or more blank lines. (A blank line is any line that looks like a
188188
blank line -- a line containing nothing but spaces or tabs is considered
189-
blank.) Normal paragraphs should not be intended with spaces or tabs.</p>
189+
blank.) Normal paragraphs should not be indented with spaces or tabs.</p>
190190

191191
<p>The implication of the "one or more consecutive lines of text" rule is
192192
that Markdown supports "hard-wrapped" text paragraphs. This differs
@@ -414,7 +414,7 @@ <h3 id="list">Lists</h3>
414414
</code></pre>
415415

416416
<p>List items may consist of multiple paragraphs. Each subsequent
417-
paragraph in a list item must be intended by either 4 spaces
417+
paragraph in a list item must be indented by either 4 spaces
418418
or one tab:</p>
419419

420420
<pre><code>1. This is a list item with two paragraphs. Lorem ipsum dolor

tests/pl/Tests_2004/Markdown Documentation - Syntax.text

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ and `&` in your example code needs to be escaped.)
186186
A paragraph is simply one or more consecutive lines of text, separated
187187
by one or more blank lines. (A blank line is any line that looks like a
188188
blank line -- a line containing nothing but spaces or tabs is considered
189-
blank.) Normal paragraphs should not be intended with spaces or tabs.
189+
blank.) Normal paragraphs should not be indented with spaces or tabs.
190190

191191
The implication of the "one or more consecutive lines of text" rule is
192192
that Markdown supports "hard-wrapped" text paragraphs. This differs
@@ -401,7 +401,7 @@ will turn into:
401401
</ul>
402402

403403
List items may consist of multiple paragraphs. Each subsequent
404-
paragraph in a list item must be intended by either 4 spaces
404+
paragraph in a list item must be indented by either 4 spaces
405405
or one tab:
406406

407407
1. This is a list item with two paragraphs. Lorem ipsum dolor

tests/pl/Tests_2007/Markdown Documentation - Basics.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ <h2>Paragraphs, Headers, Blockquotes</h2>
2929
<p>A paragraph is simply one or more consecutive lines of text, separated
3030
by one or more blank lines. (A blank line is any line that looks like a
3131
blank line -- a line containing nothing spaces or tabs is considered
32-
blank.) Normal paragraphs should not be intended with spaces or tabs.</p>
32+
blank.) Normal paragraphs should not be indented with spaces or tabs.</p>
3333

3434
<p>Markdown offers two styles of headers: <em>Setext</em> and <em>atx</em>.
3535
Setext-style headers for <code>&lt;h1&gt;</code> and <code>&lt;h2&gt;</code> are created by

tests/pl/Tests_2007/Markdown Documentation - Basics.text

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ can [see the source for it by adding '.text' to the URL] [src].
3737
A paragraph is simply one or more consecutive lines of text, separated
3838
by one or more blank lines. (A blank line is any line that looks like a
3939
blank line -- a line containing nothing spaces or tabs is considered
40-
blank.) Normal paragraphs should not be intended with spaces or tabs.
40+
blank.) Normal paragraphs should not be indented with spaces or tabs.
4141

4242
Markdown offers two styles of headers: *Setext* and *atx*.
4343
Setext-style headers for `<h1>` and `<h2>` are created by

tests/pl/Tests_2007/Markdown Documentation - Syntax.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ <h3 id="p">Paragraphs and Line Breaks</h3>
186186
<p>A paragraph is simply one or more consecutive lines of text, separated
187187
by one or more blank lines. (A blank line is any line that looks like a
188188
blank line -- a line containing nothing but spaces or tabs is considered
189-
blank.) Normal paragraphs should not be intended with spaces or tabs.</p>
189+
blank.) Normal paragraphs should not be indented with spaces or tabs.</p>
190190

191191
<p>The implication of the "one or more consecutive lines of text" rule is
192192
that Markdown supports "hard-wrapped" text paragraphs. This differs
@@ -414,7 +414,7 @@ <h3 id="list">Lists</h3>
414414
</code></pre>
415415

416416
<p>List items may consist of multiple paragraphs. Each subsequent
417-
paragraph in a list item must be intended by either 4 spaces
417+
paragraph in a list item must be indented by either 4 spaces
418418
or one tab:</p>
419419

420420
<pre><code>1. This is a list item with two paragraphs. Lorem ipsum dolor

tests/pl/Tests_2007/Markdown Documentation - Syntax.text

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ and `&` in your example code needs to be escaped.)
186186
A paragraph is simply one or more consecutive lines of text, separated
187187
by one or more blank lines. (A blank line is any line that looks like a
188188
blank line -- a line containing nothing but spaces or tabs is considered
189-
blank.) Normal paragraphs should not be intended with spaces or tabs.
189+
blank.) Normal paragraphs should not be indented with spaces or tabs.
190190

191191
The implication of the "one or more consecutive lines of text" rule is
192192
that Markdown supports "hard-wrapped" text paragraphs. This differs
@@ -401,7 +401,7 @@ will turn into:
401401
</ul>
402402

403403
List items may consist of multiple paragraphs. Each subsequent
404-
paragraph in a list item must be intended by either 4 spaces
404+
paragraph in a list item must be indented by either 4 spaces
405405
or one tab:
406406

407407
1. This is a list item with two paragraphs. Lorem ipsum dolor

0 commit comments

Comments
 (0)