Skip to content

Commit

Permalink
fix newline
Browse files Browse the repository at this point in the history
  • Loading branch information
kaishuu0123 committed Jan 18, 2018
1 parent 0eeb800 commit 381ebdb
Show file tree
Hide file tree
Showing 2 changed files with 209 additions and 198 deletions.
2 changes: 1 addition & 1 deletion erd.peg
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ attribute_sep <-

comment_string <- (![\r\n] .)*
ws <- [ \t\r\n]+
newline <- [\r\n]
newline <- '\r\n' / '\n' / '\r'
newline_or_eot <- newline / EOT
space <- [ \t]+
string <- (!["\t\r\n/:,\[\]{} ].)+
Expand Down

0 comments on commit 381ebdb

Please sign in to comment.