Skip to content

Commit 23d30ea

Browse files
LemmingAvalanchegitster
authored andcommitted
doc: column: fix blank lines around block delimiters
227c4f3 (doc: add a blank line around block delimiters, 2025-03-09) added blank lines around block delimiters as a defensive measure. For each block you had to mind the con- text (like the commit says): • Top-level: just add blank lines • Block: use list continuation (+) But list continuation was used here at the top level, which results in literal `+` in the output formats. Acked-by: Jean-Noël Avila <[email protected]> Signed-off-by: Kristoffer Haugsbakk <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 7014b55 commit 23d30ea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Documentation/git-column.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ EXAMPLES
5050
--------
5151

5252
Format data by columns:
53-
+
53+
5454
------------
5555
$ seq 1 24 | git column --mode=column --padding=5
5656
1 4 7 10 13 16 19 22
@@ -59,7 +59,7 @@ $ seq 1 24 | git column --mode=column --padding=5
5959
------------
6060

6161
Format data by rows:
62-
+
62+
6363
------------
6464
$ seq 1 21 | git column --mode=row --padding=5
6565
1 2 3 4 5 6 7
@@ -68,7 +68,7 @@ $ seq 1 21 | git column --mode=row --padding=5
6868
------------
6969

7070
List some tags in a table with unequal column widths:
71-
+
71+
7272
------------
7373
$ git tag --list 'v2.4.*' --column=row,dense
7474
v2.4.0 v2.4.0-rc0 v2.4.0-rc1 v2.4.0-rc2 v2.4.0-rc3

0 commit comments

Comments
 (0)