summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-09-12 07:41:28 +0900
committerYukihiro Matsumoto <[email protected]>2012-09-12 07:41:28 +0900
commit54101eec43821a16a83db00840a9cc8034d8f3a1 (patch)
tree65c80390f88db79228a498442748bd174c59da00 /src
parentcdbd116c49078ab32d70f6a0f8cf9dcfa694a7a3 (diff)
downloadmruby-54101eec43821a16a83db00840a9cc8034d8f3a1.tar.gz
mruby-54101eec43821a16a83db00840a9cc8034d8f3a1.zip
typo fixed
Diffstat (limited to 'src')
-rw-r--r--src/array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/array.c b/src/array.c
index a76d3f004..e55b104da 100644
--- a/src/array.c
+++ b/src/array.c
@@ -368,7 +368,7 @@ mrb_ary_reverse_bang(mrb_state *mrb, mrb_value self)
if (a->len > 1) {
mrb_value *p1, *p2;
- ary_modify(mrb, *a);
+ ary_modify(mrb, a);
p1 = a->ptr;
p2 = a->ptr + a->len - 1;