[DOC] Use File.open with block instead of File.new without close [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61433 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2017-12-24 01:26:46 +00:00
Родитель 9fe26ef8de
Коммит 13247fa417
1 изменённых файлов: 4 добавлений и 3 удалений

7
io.c
Просмотреть файл

@ -5175,10 +5175,11 @@ internal_pwrite_func(void *ptr)
* Raises <code>SystemCallError</code> on error and <code>NotImplementedError</code>
* if platform does not implement the system call.
*
* f = File.new("out", "w")
* f.pwrite("ABCDEF", 3) #=> 6
* File.open("out", "w") do |f|
* f.pwrite("ABCDEF", 3) #=> 6
* end
*
* File.read("out") #=> "\u0000\u0000\u0000ABCDEF"
* File.read("out") #=> "\u0000\u0000\u0000ABCDEF"
*/
static VALUE
rb_io_pwrite(VALUE io, VALUE str, VALUE offset)