diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-22 12:12:24 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-22 12:12:24 +0000 |
commit | 359d93233200a4425f9d560cf519d32e5f47576d (patch) | |
tree | 1ab3accfde5de496846120cbebeb43eabcf3fadd /class.c | |
parent | 4079c46912da9608dd5cc933d94a29baa99dd2e5 (diff) | |
download | bundler-359d93233200a4425f9d560cf519d32e5f47576d.tar.gz |
* class.c (rb_obj_basic_to_s_p): typo. Please become familiar with
the ANSI style.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25436 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'class.c')
-rw-r--r-- | class.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1258,7 +1258,7 @@ rb_define_attr(VALUE klass, const char *name, int read, int write) } int -rb_obj_basic_to_s_p(obj) +rb_obj_basic_to_s_p(VALUE obj) { const rb_method_entry_t *me = rb_method_entry(CLASS_OF(obj), rb_intern("to_s")); if (me && me->def && me->def->type == VM_METHOD_TYPE_CFUNC && |