ruby-changes:22710
From: drbrain <ko1@a...>
Date: Thu, 23 Feb 2012 11:00:49 +0900 (JST)
Subject: [ruby-changes:22710] drbrain:r34759 (trunk): * io.c (rb_io_f_sync): Fix double-negative typo. [ruby-trunk - #5837]
drbrain 2012-02-23 11:00:39 +0900 (Thu, 23 Feb 2012) New Revision: 34759 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=34759 Log: * io.c (rb_io_f_sync): Fix double-negative typo. [ruby-trunk - #5837] Modified files: trunk/ChangeLog trunk/io.c Index: ChangeLog =================================================================== --- ChangeLog (revision 34758) +++ ChangeLog (revision 34759) @@ -1,3 +1,7 @@ +Thu Feb 23 10:00:18 2012 Eric Hodel <drbrain@s...> + + * io.c (rb_io_f_sync): Fix double-negative typo. [ruby-trunk - #5837] + Thu Feb 23 09:57:21 2012 Eric Hodel <drbrain@s...> * load.c (rb_f_require): Add note to require for scope of items in the Index: io.c =================================================================== --- io.c (revision 34758) +++ io.c (revision 34759) @@ -1642,7 +1642,7 @@ * 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 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/