aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-22 00:00:41 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-22 00:00:41 +0000
commit5c95700d80f8b12aaa62ae0fbd8822b546d47ae8 (patch)
tree37b6e72784799cfa03ed0d05dcbabf9ca5ee6747 /string.c
parent9d66267f91c175266b6b069d5fa40d992fe4a4e0 (diff)
downloadruby-5c95700d80f8b12aaa62ae0fbd8822b546d47ae8.tar.gz
string.c: comment layout [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60331 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/string.c b/string.c
index 7f21f77cc2..050ef27d9b 100644
--- a/string.c
+++ b/string.c
@@ -2949,7 +2949,7 @@ rb_str_concat_literals(size_t num, const VALUE *strary)
* Concatenates the given object(s) to <i>str</i>. If an object is an
* <code>Integer</code>, it is considered a codepoint and converted
* to a character before concatenation.
-
+ *
* +concat+ can take multiple arguments, and all the arguments are concatenated
* in order. See String#<<, which takes a single argument.
*
@@ -2980,7 +2980,7 @@ rb_str_concat_multi(int argc, VALUE *argv, VALUE str)
return str;
}
- /*
+/*
* call-seq:
* str << obj -> str
* str << integer -> str