1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Adjust indent in string.c [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2021-09-16 23:49:16 +09:00
parent aa3d8388c0
commit cbbda3e648
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -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);
}
}
}