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

Remove unnecessary space

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65824 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2018-11-20 03:03:01 +00:00
parent 9ba7aece01
commit aa515c8d8c

2
io.c
View file

@ -4219,7 +4219,7 @@ rb_io_ungetbyte(VALUE io, VALUE b)
}
else {
rb_raise(rb_eRangeError,
"integer % d too big to convert into `unsigned char'", i);
"integer %d too big to convert into `unsigned char'", i);
}
}
else if (RB_TYPE_P(b, T_BIGNUM)) {