summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-09-16 23:49:16 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-09-16 23:49:16 +0900
commitcbbda3e648f8eff032679cdddb0ce48643cdd723 (patch)
treee98c312b99f35f0c506ed5a7638a4d63eb118ce7 /string.c
parentaa3d8388c056d8692e40a96de7441524654effc4 (diff)
Adjust indent in string.c [ci skip]
Diffstat (limited to 'string.c')
-rw-r--r--string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string.c b/string.c
index 267efd407c..7f9559cb83 100644
--- a/string.c
+++ b/string.c
@@ -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);
}
}
}