Skip to content

Commit

Permalink
Fix unmatched emphasis tag in git-tutorial
Browse files Browse the repository at this point in the history
In asciidoc 7.1.2 and prior there is no obvious way to get:

'add'ing

to emphasize only the "add", instead it treats the first apostrophe as the
beginning of an emphasis, and the second apostrophe as a regular
apostrophe and makes the rest of the line an emphasis since there is no
closing apostrophe.  In the newer asciidoc you can do it pretty easily
with __add__ing but I'm not sure it would be best to make that a prereq
for something as silly as this.

Signed-off-by: Andrew Ruder <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
aeruder authored and Junio C Hamano committed Apr 19, 2007
1 parent 6b04600 commit c91ee27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/tutorial.txt
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ make it real.
Note: don't forget to 'add' a file again if you modified it after the
first 'add' and before 'commit'. Otherwise only the previous added
state of that file will be committed. This is because git tracks
content, so what you're really 'add'ing to the commit is the *content*
content, so what you're really 'adding' to the commit is the *content*
of the file in the state it is in when you 'add' it.

2) By using 'git commit -a' directly
Expand Down

0 comments on commit c91ee27

Please sign in to comment.