Skip to content

Commit

Permalink
Update lib/lexer_mdx.mll
Browse files Browse the repository at this point in the history
Co-authored-by: Nathan Rebours <nathan.p.rebours@gmail.com>
  • Loading branch information
Julow and NathanReb authored Nov 16, 2020
1 parent e656753 commit f74bffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/lexer_mdx.mll
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let labels l =
failwith msg
}

let eol = '\n' | '\r' '\n' | eof
let eol = '\n' | "\r\n" | eof
let ws = [' ' '\t']

let until_eol = [^'\n' '\r']
Expand Down

0 comments on commit f74bffb

Please sign in to comment.