Skip to content

Commit

Permalink
fix(core): fix multi \n
Browse files Browse the repository at this point in the history
  • Loading branch information
SARDONYX-sard committed Nov 18, 2023
1 parent ae73f9a commit 83a81fb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dar2oar_core/src/dar_syntax/syntax.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ pub fn parse_condition(input: &str) -> IResult<&str, Condition<'_>> {
let (input, _) = space0(input)?;
let (input, operator) = opt(parse_operator)(input)?;
let (input, _) = many0(comment)(input)?;
let (input, _) = multispace0(input)?;

if let Some(operator) = operator {
match operator {
Expand Down

0 comments on commit 83a81fb

Please sign in to comment.