diff mbox series

config.txt: add missing period

Message ID 20210316144040.23976-1-kyle@kyleam.com (mailing list archive)
State Accepted
Commit aa8439608d36d45f92c33173b7f0ef24af7376aa
Headers show
Series config.txt: add missing period | expand

Commit Message

Kyle Meyer March 16, 2021, 2:40 p.m. UTC
Signed-off-by: Kyle Meyer <kyle@kyleam.com>
---
 Documentation/config.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jeff King March 16, 2021, 3:17 p.m. UTC | #1
On Tue, Mar 16, 2021 at 10:40:40AM -0400, Kyle Meyer wrote:

> diff --git a/Documentation/config.txt b/Documentation/config.txt
> index 6ba50b1104..06615d840b 100644
> --- a/Documentation/config.txt
> +++ b/Documentation/config.txt
> @@ -46,7 +46,7 @@ Subsection names are case sensitive and can contain any characters except
>  newline and the null byte. Doublequote `"` and backslash can be included
>  by escaping them as `\"` and `\\`, respectively. Backslashes preceding
>  other characters are dropped when reading; for example, `\t` is read as
> -`t` and `\0` is read as `0` Section headers cannot span multiple lines.
> +`t` and `\0` is read as `0`. Section headers cannot span multiple lines.

Yep, looks obviously correct. I wondered if this got introduced during
some formatting cleanup, but it has been present since the text was
added in 1feb061701 (config.txt: document behavior of backslashes in
subsections, 2017-12-21).

Thanks for spotting.

-Peff
diff mbox series

Patch

diff --git a/Documentation/config.txt b/Documentation/config.txt
index 6ba50b1104..06615d840b 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -46,7 +46,7 @@  Subsection names are case sensitive and can contain any characters except
 newline and the null byte. Doublequote `"` and backslash can be included
 by escaping them as `\"` and `\\`, respectively. Backslashes preceding
 other characters are dropped when reading; for example, `\t` is read as
-`t` and `\0` is read as `0` Section headers cannot span multiple lines.
+`t` and `\0` is read as `0`. Section headers cannot span multiple lines.
 Variables may belong directly to a section or to a given subsection. You
 can have `[section]` if you have `[section "subsection"]`, but you don't
 need to.