summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
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)
{