We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc5cfe2 commit 6de6523Copy full SHA for 6de6523
src/core/CCChar.ml
@@ -27,6 +27,6 @@ include Infix
27
let is_uppercase_ascii c = c > '\064' && c < '\091'
28
let is_lowercase_ascii c = c > '\096' && c < '\123'
29
let is_letter_ascii c =
30
- (is_lowercase_ascii[@inlined]) c || (is_uppercase_ascii[@inlined]) c
+ (is_lowercase_ascii [@inlined]) c || (is_uppercase_ascii [@inlined]) c
31
let is_digit_ascii c = c > '\047' && c < '\058'
32
let is_whitespace_ascii c = c = '\032' || (c > '\008' && c < '\014')
0 commit comments