File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -2244,7 +2244,9 @@ Init_stringio(void)
22442244 rb_define_method (StringIO , "set_encoding_by_bom" , strio_set_encoding_by_bom , 0 );
22452245
22462246 {
2247+ /* :stopdoc: */
22472248 VALUE mReadable = rb_define_module_under (rb_cIO , "generic_readable" );
2249+ /* :startdoc: */
22482250 rb_define_method (mReadable , "readchar" , strio_readchar , 0 );
22492251 rb_define_method (mReadable , "readbyte" , strio_readbyte , 0 );
22502252 rb_define_method (mReadable , "readline" , strio_readline , -1 );
@@ -2254,7 +2256,9 @@ Init_stringio(void)
22542256 rb_include_module (StringIO , mReadable );
22552257 }
22562258 {
2259+ /* :stopdoc: */
22572260 VALUE mWritable = rb_define_module_under (rb_cIO , "generic_writable" );
2261+ /* :startdoc: */
22582262 rb_define_method (mWritable , "<<" , strio_addstr , 1 );
22592263 rb_define_method (mWritable , "print" , strio_print , -1 );
22602264 rb_define_method (mWritable , "printf" , strio_printf , -1 );
You can’t perform that action at this time.
0 commit comments