mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* io.c (rb_io_f_sync): Fix double-negative typo. [ruby-trunk - #5837]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34759 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8a5b4ad115
commit
0585853c69
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Thu Feb 23 10:00:18 2012 Eric Hodel <drbrain@segment7.net>
|
||||
|
||||
* io.c (rb_io_f_sync): Fix double-negative typo. [ruby-trunk - #5837]
|
||||
|
||||
Thu Feb 23 09:57:21 2012 Eric Hodel <drbrain@segment7.net>
|
||||
|
||||
* load.c (rb_f_require): Add note to require for scope of items in the
|
||||
|
|
2
io.c
2
io.c
|
@ -1642,7 +1642,7 @@ rb_io_set_sync(VALUE io, VALUE sync)
|
|||
* Immediately writes all buffered data in <em>ios</em> to disk.
|
||||
* Note that <code>fsync</code> differs from
|
||||
* using <code>IO#sync=</code>. The latter ensures that data is flushed
|
||||
* from Ruby's buffers, but doesn't not guarantee that the underlying
|
||||
* from Ruby's buffers, but does not guarantee that the underlying
|
||||
* operating system actually writes it to disk.
|
||||
*
|
||||
* <code>NotImplementedError</code> is raised
|
||||
|
|
Loading…
Add table
Reference in a new issue