aboutsummaryrefslogtreecommitdiffstats
path: root/complex.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-23 02:16:42 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-23 02:16:42 +0000
commit6d7034a849ff5b0b4c044e6b1dc52b57bcaa70dd (patch)
tree0ab2804b6aab21b2d07c840458f10a515dfef3b5 /complex.c
parent5f025b1569b6057d96f7cd9a41088f96f5183529 (diff)
downloadruby-6d7034a849ff5b0b4c044e6b1dc52b57bcaa70dd.tar.gz
[DOC] nodoc internal methods/classes
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62542 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'complex.c')
-rw-r--r--complex.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/complex.c b/complex.c
index dc7e61a605..a8fdbc0e01 100644
--- a/complex.c
+++ b/complex.c
@@ -2300,7 +2300,8 @@ Init_Complex(void)
rb_define_method(rb_cComplex, "infinite?", rb_complex_infinite_p, 0);
rb_define_private_method(rb_cComplex, "marshal_dump", nucomp_marshal_dump, 0);
- compat = rb_define_class_under(rb_cComplex, "compatible", rb_cObject); /* :nodoc: */
+ /* :nodoc: */
+ compat = rb_define_class_under(rb_cComplex, "compatible", rb_cObject);
rb_define_private_method(compat, "marshal_load", nucomp_marshal_load, 1);
rb_marshal_define_compat(rb_cComplex, compat, nucomp_dumper, nucomp_loader);