Skip to content

Commit

Permalink
line-space includes node-space now
Browse files Browse the repository at this point in the history
  • Loading branch information
zkat committed Dec 19, 2024
1 parent 2148ddc commit be00395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v2_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ fn badval_ty_char(input: &mut Input<'_>) -> PResult<()> {

/// `line-space := newline | ws | single-line-comment`
fn line_space(input: &mut Input<'_>) -> PResult<()> {
alt((newline, ws, single_line_comment)).parse_next(input)
alt((node_space, newline, single_line_comment)).parse_next(input)
}

/// `node-space := ws* escline ws* | ws+`
Expand Down

0 comments on commit be00395

Please sign in to comment.