Skip to content

Commit 6de6523

Browse files
author
Alexander Lucas
committed
Fixed spacing/formatting.
1 parent fc5cfe2 commit 6de6523

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/CCChar.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ include Infix
2727
let is_uppercase_ascii c = c > '\064' && c < '\091'
2828
let is_lowercase_ascii c = c > '\096' && c < '\123'
2929
let is_letter_ascii c =
30-
(is_lowercase_ascii[@inlined]) c || (is_uppercase_ascii[@inlined]) c
30+
(is_lowercase_ascii [@inlined]) c || (is_uppercase_ascii [@inlined]) c
3131
let is_digit_ascii c = c > '\047' && c < '\058'
3232
let is_whitespace_ascii c = c = '\032' || (c > '\008' && c < '\014')

0 commit comments

Comments
 (0)