diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-05-26 06:39:06 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-05-26 06:39:06 +0000 |
commit | a77cb8c80f7a1bb849740bfdfaf551123715f04c (patch) | |
tree | 79f9e47617d2c2ac2332c149c27a3797c6009423 | |
parent | 2881374caf647e0d982bead451d4c2a96e6f8516 (diff) |
string.c: adjust style [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58897 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | string.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2937,7 +2937,8 @@ rb_str_concat_multi(int argc, VALUE *argv, VALUE str) if (argc == 1) { return rb_str_concat(str, argv[0]); - } else if (argc > 1) { + } + else if (argc > 1) { int i; VALUE arg_str = rb_str_tmp_new(0); rb_enc_copy(arg_str, str); |