Skip to content

Commit 0a4c6aa

Browse files
committed
Update PartialParser.ml
1 parent 19f6603 commit 0a4c6aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

analysis/src/PartialParser.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ let rec skipWhite text i =
3737
if i < 0 then 0
3838
else
3939
match text.[i] with
40-
| ' ' | '\n' | 'r' | '\t' -> skipWhite text (i - 1)
40+
| ' ' | '\n' | '\r' | '\t' -> skipWhite text (i - 1)
4141
| _ -> i
4242

4343
let rec startOfLident text i =

0 commit comments

Comments
 (0)