update doc.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28912 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2010-08-07 23:30:45 +00:00
parent 5f5e0b7191
commit 8488b62d59

6
io.c
View File

@ -3850,10 +3850,10 @@ rb_io_syswrite(VALUE io, VALUE str)
/* /*
* call-seq: * call-seq:
* ios.sysread(integer[, outbuf]) -> string * ios.sysread(maxlen[, outbuf]) -> string
* *
* Reads <i>integer</i> bytes from <em>ios</em> using a low-level * Reads <i>maxlen</i> bytes from <em>ios</em> using a low-level
* read and returns them as a string. Do not mix with other methods * read and returns them as a string. Do not mix with other methods
* that read from <em>ios</em> or you may get unpredictable results. * that read from <em>ios</em> or you may get unpredictable results.
* If the optional <i>outbuf</i> argument is present, it must reference * If the optional <i>outbuf</i> argument is present, it must reference
* a String, which will receive the data. * a String, which will receive the data.