Message ID | 20201201121051.186050-1-stepnem@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | e63d77424264b25c0d12682543cd9bd951dfd52c |
Headers | show |
Series | config.txt: fix a typo (backslash != backquote) | expand |
On Tue, 1 Dec 2020 at 13:12, Štěpán Němec <stepnem@gmail.com> wrote: > A line that defines a value can be continued to the next line by > -ending it with a `\`; the backquote and the end-of-line are > +ending it with a `\`; the backslash and the end-of-line are > stripped. Leading whitespaces after 'name =', the remainder of the Heh. The backslash is put inside backquotes for rendering as monospace, so I can see how that happened. This change makes sense to me. Martin
Štěpán Němec <stepnem@gmail.com> writes: > Signed-off-by: Štěpán Němec <stepnem@gmail.com> > --- > Documentation/config.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Thanks for spotting an ancient typo that is more than 5 years old. > > diff --git a/Documentation/config.txt b/Documentation/config.txt > index bf706b950e..9700f6ebf9 100644 > --- a/Documentation/config.txt > +++ b/Documentation/config.txt > @@ -64,7 +64,7 @@ The variable names are case-insensitive, allow only alphanumeric characters > and `-`, and must start with an alphabetic character. > > A line that defines a value can be continued to the next line by > -ending it with a `\`; the backquote and the end-of-line are > +ending it with a `\`; the backslash and the end-of-line are > stripped. Leading whitespaces after 'name =', the remainder of the > line after the first comment character '#' or ';', and trailing > whitespaces of the line are discarded unless they are enclosed in
diff --git a/Documentation/config.txt b/Documentation/config.txt index bf706b950e..9700f6ebf9 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -64,7 +64,7 @@ The variable names are case-insensitive, allow only alphanumeric characters and `-`, and must start with an alphabetic character. A line that defines a value can be continued to the next line by -ending it with a `\`; the backquote and the end-of-line are +ending it with a `\`; the backslash and the end-of-line are stripped. Leading whitespaces after 'name =', the remainder of the line after the first comment character '#' or ';', and trailing whitespaces of the line are discarded unless they are enclosed in
Signed-off-by: Štěpán Němec <stepnem@gmail.com> --- Documentation/config.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)