[前][次][番号順一覧][スレッド一覧]

ruby-changes:40198

From: nobu <ko1@a...>
Date: Sun, 25 Oct 2015 23:34:19 +0900 (JST)
Subject: [ruby-changes:40198] nobu:r52279 (trunk): io.c: fix typo [ci skip]

nobu	2015-10-25 23:34:08 +0900 (Sun, 25 Oct 2015)

  New Revision: 52279

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=52279

  Log:
    io.c: fix typo [ci skip]
    
    * io.c (io_readpartial): fix typo, "later" to "latter".
      [ruby-core:71181] [Bug #11619]

  Modified files:
    trunk/io.c
Index: io.c
===================================================================
--- io.c	(revision 52278)
+++ io.c	(revision 52279)
@@ -2607,7 +2607,7 @@ io_getpartial(int argc, VALUE *argv, VAL https://github.com/ruby/ruby/blob/trunk/io.c#L2607
  *  * If the byte buffer is not empty, read from the byte buffer instead of "sysread for buffered IO (IOError)".
  *  * It doesn't cause Errno::EWOULDBLOCK and Errno::EINTR.  When readpartial meets EWOULDBLOCK and EINTR by read system call, readpartial retry the system call.
  *
- *  The later means that readpartial is nonblocking-flag insensitive.
+ *  The latter means that readpartial is nonblocking-flag insensitive.
  *  It blocks on the situation IO#sysread causes Errno::EWOULDBLOCK as if the fd is blocking mode.
  *
  */

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]