Documentation/git-repo: capitalize format descriptions
The descriptions for the git-repo output formats are in lowercase. Capitalize these descriptions, making them consistent with the rest of the documentation. Signed-off-by: Lucas Seiki Oshiro <lucasseikioshiro@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Lucas Seiki Oshiro committed
Feb 25, 2026 at 13:32 UTC
8b97dc367a9dce2c5f14c8012ac1025c3ec70121
1 file changed
+2
-2
Documentation/git-repo.adoc
+2
-2
@@ -33,13 +33,13 @@ supported:
33
+
34
35
`lines`:::
36
- output key-value pairs one per line using the `=` character as
36
+ Output key-value pairs one per line using the `=` character as
37
the delimiter between the key and the value. Values containing "unusual"
38
characters are quoted as explained for the configuration variable
39
`core.quotePath` (see linkgit:git-config[1]). This is the default.
40
41
`nul`:::
42
- similar to `lines`, but using a newline character as the delimiter
42
+ Similar to `lines`, but using a newline character as the delimiter
43
between the key and the value and using a _NUL_ character after each value.
44
This format is better suited for being parsed by another applications than
45
`lines`. Unlike in the `lines` format, the values are never quoted.