From 0fe7dc7a18cd73a4a6207ee9ad288ae434ee29d7 Mon Sep 17 00:00:00 2001 From: kazu Date: Wed, 7 Dec 2016 15:30:01 +0000 Subject: fix typo in `IO#write_nonblock` example [ci skip] This example explains when writing a value greater than 65536, so the value specify must be greater than 65536. This seems to be wrong in cee7f69 Patch by: Yuji Yaginuma [Fix GH-1496] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57018 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- prelude.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prelude.rb') diff --git a/prelude.rb b/prelude.rb index f9bb7451f8..740aba5b79 100644 --- a/prelude.rb +++ b/prelude.rb @@ -99,7 +99,7 @@ class IO # # # write_nonblock writes only 65536 bytes and return 65536. # # (The pipe size is 65536 bytes on this environment.) - # s = "a" #100000 + # s = "a" * 100000 # p w.write_nonblock(s) #=> 65536 # # # write_nonblock cannot write a byte and raise EWOULDBLOCK (EAGAIN). -- cgit v1.2.3