From eb28bd805723d5d2f67dcea7f3d4f1026c431551 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 8 Nov 2015 05:08:03 +0000 Subject: io.c: [DOC] IO#gets [skip ci] * io.c (rb_io_gets_m): [DOC] add example using limit argument. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52489 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/io.c b/io.c index c546edfbbf..a1922570c5 100644 --- a/io.c +++ b/io.c @@ -3292,6 +3292,8 @@ rb_io_gets(VALUE io) * File.new("testfile").gets #=> "This is line one\n" * $_ #=> "This is line one\n" * + * File.new("testfile").gets(4)#=> "This" + * * If IO contains multibyte characters byte then gets(1) * returns character entirely: * -- cgit v1.2.3