diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-06-13 09:51:09 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-06-13 09:51:09 +0900 |
| commit | f3c10487562b2a85534ffaf050e739169491abe7 (patch) | |
| tree | 5f42b861370c1ef2922be8466a3f11f2c5500011 /src | |
| parent | dbc93621c94b9b2d2b437cde40d8efec7337a64d (diff) | |
| download | mruby-f3c10487562b2a85534ffaf050e739169491abe7.tar.gz mruby-f3c10487562b2a85534ffaf050e739169491abe7.zip | |
fix indent
Diffstat (limited to 'src')
| -rw-r--r-- | src/array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/array.c b/src/array.c index 4e662d6e4..92359b033 100644 --- a/src/array.c +++ b/src/array.c @@ -1168,7 +1168,7 @@ mrb_init_array(mrb_state *mrb) mrb_define_method(mrb, a, "unshift", mrb_ary_unshift_m, MRB_ARGS_ANY()); /* 15.2.12.5.30 */ mrb_define_method(mrb, a, "inspect", mrb_ary_inspect, MRB_ARGS_NONE()); /* 15.2.12.5.31 (x) */ - mrb_define_alias(mrb, a, "to_s", "inspect"); /* 15.2.12.5.32 (x) */ + mrb_define_alias(mrb, a, "to_s", "inspect"); /* 15.2.12.5.32 (x) */ mrb_define_method(mrb, a, "==", mrb_ary_equal, MRB_ARGS_REQ(1)); /* 15.2.12.5.33 (x) */ mrb_define_method(mrb, a, "eql?", mrb_ary_eql, MRB_ARGS_REQ(1)); /* 15.2.12.5.34 (x) */ mrb_define_method(mrb, a, "<=>", mrb_ary_cmp, MRB_ARGS_REQ(1)); /* 15.2.12.5.36 (x) */ |
