summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index 7177623914..2ed6488962 100644
--- a/compile.c
+++ b/compile.c
@@ -3950,7 +3950,7 @@ compile_array(rb_iseq_t *iseq, LINK_ANCHOR *const ret, const NODE *node, int pop
* The following limits the stack length up to max_stack_len.
*
* [x1,x2,...,x10000] =>
- * push x1 ; push x2 ; ...; push x256; newarray 256;
+ * push x1 ; push x2 ; ...; push x256; newarray 256;
* push x257; push x258; ...; push x512; newarray 256; concatarray;
* push x513; push x514; ...; push x768; newarray 256; concatarray;
* ...