aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-02 06:59:25 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-02 06:59:25 +0000
commit820e5ade8be622d97cff00c04bc861a98e582067 (patch)
treed6f3d135396d2fc0225e158f2029856509356ea6 /array.c
parent24f5f816ff03621897a4c8b18393d3d027d1f02a (diff)
downloadruby-820e5ade8be622d97cff00c04bc861a98e582067.tar.gz
array.c: decoration
* array.c (rb_ary_plus): inline decoration of the operator. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48683 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'array.c')
-rw-r--r--array.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/array.c b/array.c
index 2c390f9749..6babe97ef9 100644
--- a/array.c
+++ b/array.c
@@ -3530,12 +3530,11 @@ rb_ary_fill(int argc, VALUE *argv, VALUE ary)
* is the same as
* x = x + y
* This means that it produces a new array. As a consequence,
- * repeated use of += on arrays can be quite inefficient.
+ * repeated use of <code>+=</code> on arrays can be quite inefficient.
*
* See also Array#concat.
*/
-
VALUE
rb_ary_plus(VALUE x, VALUE y)
{