diff options
author | Nobuyoshi Nakada <[email protected]> | 2021-09-16 23:49:16 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-09-16 23:49:16 +0900 |
commit | cbbda3e648f8eff032679cdddb0ce48643cdd723 (patch) | |
tree | e98c312b99f35f0c506ed5a7638a4d63eb118ce7 /string.c | |
parent | aa3d8388c056d8692e40a96de7441524654effc4 (diff) |
Adjust indent in string.c [ci skip]
Diffstat (limited to 'string.c')
-rw-r--r-- | string.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4630,7 +4630,7 @@ rb_str_include_range_p(VALUE beg, VALUE end, VALUE val, VALUE exclusive) if (ISASCII(b) && ISASCII(e) && ISASCII(v)) { if (b <= v && v < e) return Qtrue; - return RBOOL(!RTEST(exclusive) && v == e); + return RBOOL(!RTEST(exclusive) && v == e); } } } |