Update line continuation wording (#184)

This commit is contained in:
Ben Reinhart 2021-09-19 19:28:25 -04:00 committed by GitHub
parent f59ca2476a
commit 5c4f83b824
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -113,10 +113,9 @@ The following characters cannot be used anywhere in a bare
Line continuations allow [Nodes](#node) to be spread across multiple lines. Line continuations allow [Nodes](#node) to be spread across multiple lines.
A line continuation is one or more [whitespace](#whitespace) characters, A line continuation is a `\` character followed by zero or more whitespace
followed by a `\` character. This character can then be followed by more characters and an optional single-line comment. It must be terminated by a
[whitespace](#whitespace) and must be terminated by a [Newline](#newline) [Newline](#newline) (including the Newline that is part of single-line comments).
(including the Newline that is part of single-line comments).
Following a line continuation, processing of a Node can continue as usual. Following a line continuation, processing of a Node can continue as usual.