Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'jk/stripspace-asciidoctor-fix'
author
Junio C Hamano
<gitster@pobox.com>
Fri, 22 May 2015 19:41:49 +0000
(12:41 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Fri, 22 May 2015 19:41:49 +0000
(12:41 -0700)
A literal block in the tutorial had lines with unequal lengths to
delimit it from the rest of the document, which choke GitHub's
AsciiDoc renderer.
* jk/stripspace-asciidoctor-fix:
doc: fix unmatched code fences in git-stripspace
Documentation/git-stripspace.txt
patch
|
blob
|
history
raw
(from parent 1:
236794f
)
diff --git
a/Documentation/git-stripspace.txt
b/Documentation/git-stripspace.txt
index 6c6e989074c58840ca1c8c4e6f4cad0b8fdb718d..60328d5d08d43d31dd80e14b07fe75257a1f4446 100644
(file)
--- a/
Documentation/git-stripspace.txt
+++ b/
Documentation/git-stripspace.txt
@@
-49,7
+49,7
@@
EXAMPLES
Given the following noisy input with '$' indicating the end of a line:
---------
+--------
-
|A brief introduction $
| $
|$
@@
-65,7
+65,7
@@
Given the following noisy input with '$' indicating the end of a line:
Use 'git stripspace' with no arguments to obtain:
---------
+--------
-
|A brief introduction$
|$
|A new paragraph$
@@
-79,7
+79,7
@@
Use 'git stripspace' with no arguments to obtain:
Use 'git stripspace --strip-comments' to obtain:
---------
+--------
-
|A brief introduction$
|$
|A new paragraph$