summaryrefslogtreecommitdiffhomepage
path: root/src/class.c
diff options
context:
space:
mode:
authorCorey Powell <[email protected]>2015-07-13 09:40:40 -0500
committerCorey Powell <[email protected]>2015-07-13 09:40:40 -0500
commit1f678a4acefc14531a2ed25c33f62a0d628b1474 (patch)
tree648cd1d72b19fdbde1403f29b7452467a46d6794 /src/class.c
parent668153092f48275279f85d2618fff6eb9730332c (diff)
downloadmruby-1f678a4acefc14531a2ed25c33f62a0d628b1474.tar.gz
mruby-1f678a4acefc14531a2ed25c33f62a0d628b1474.zip
Removed comment beside method_removed
Not sure if this apart of the ISO standard, so make sure its not misrepresented
Diffstat (limited to 'src/class.c')
-rw-r--r--src/class.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/class.c b/src/class.c
index 0b00a6484..a13da63ac 100644
--- a/src/class.c
+++ b/src/class.c
@@ -2198,7 +2198,7 @@ mrb_init_class(mrb_state *mrb)
mrb_define_method(mrb, mod, "public", mrb_mod_dummy_visibility, MRB_ARGS_ANY()); /* 15.2.2.4.38 */
mrb_define_method(mrb, mod, "remove_class_variable", mrb_mod_remove_cvar, MRB_ARGS_REQ(1)); /* 15.2.2.4.39 */
mrb_define_method(mrb, mod, "remove_method", mrb_mod_remove_method, MRB_ARGS_ANY()); /* 15.2.2.4.41 */
- mrb_define_method(mrb, mod, "method_removed", mrb_bob_init, MRB_ARGS_REQ(1)); /* 15.2.2.4.41 */
+ mrb_define_method(mrb, mod, "method_removed", mrb_bob_init, MRB_ARGS_REQ(1));
mrb_define_method(mrb, mod, "attr_reader", mrb_mod_attr_reader, MRB_ARGS_ANY()); /* 15.2.2.4.13 */
mrb_define_method(mrb, mod, "attr_writer", mrb_mod_attr_writer, MRB_ARGS_ANY()); /* 15.2.2.4.14 */
mrb_define_method(mrb, mod, "to_s", mrb_mod_to_s, MRB_ARGS_NONE());