Skip to content

Commit 17cec83

Browse files
committed
Expand tabs [ci skip]
1 parent 4ccaf62 commit 17cec83

File tree

155 files changed

+38053
-38053
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+38053
-38053
lines changed

array.c

Lines changed: 944 additions & 944 deletions
Large diffs are not rendered by default.

bignum.c

Lines changed: 555 additions & 555 deletions
Large diffs are not rendered by default.

class.c

Lines changed: 265 additions & 265 deletions
Large diffs are not rendered by default.

compar.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ rb_cmperr(VALUE x, VALUE y)
3030
VALUE classname;
3131

3232
if (SPECIAL_CONST_P(y) || BUILTIN_TYPE(y) == T_FLOAT) {
33-
classname = rb_inspect(y);
33+
classname = rb_inspect(y);
3434
}
3535
else {
36-
classname = rb_obj_class(y);
36+
classname = rb_obj_class(y);
3737
}
3838
rb_raise(rb_eArgError, "comparison of %"PRIsVALUE" with %"PRIsVALUE" failed",
39-
rb_obj_class(x), classname);
39+
rb_obj_class(x), classname);
4040
}
4141

4242
static VALUE
@@ -51,11 +51,11 @@ rb_invcmp(VALUE x, VALUE y)
5151
{
5252
VALUE invcmp = rb_exec_recursive(invcmp_recursive, x, y);
5353
if (invcmp == Qundef || NIL_P(invcmp)) {
54-
return Qnil;
54+
return Qnil;
5555
}
5656
else {
57-
int result = -rb_cmpint(invcmp, x, y);
58-
return INT2FIX(result);
57+
int result = -rb_cmpint(invcmp, x, y);
58+
return INT2FIX(result);
5959
}
6060
}
6161

@@ -229,7 +229,7 @@ cmp_clamp(int argc, VALUE *argv, VALUE x)
229229
}
230230
}
231231
if (!NIL_P(min) && !NIL_P(max) && cmpint(min, max) > 0) {
232-
rb_raise(rb_eArgError, "min argument must be smaller than max argument");
232+
rb_raise(rb_eArgError, "min argument must be smaller than max argument");
233233
}
234234

235235
if (!NIL_P(min)) {

0 commit comments

Comments
 (0)