From ee04889799c4a94ddfb483ce931116281ff9dd1f Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 25 Oct 2015 14:34:08 +0000 Subject: io.c: fix typo [ci skip] * io.c (io_readpartial): fix typo, "later" to "latter". [ruby-core:71181] [Bug #11619] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52279 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'io.c') diff --git a/io.c b/io.c index 9b97e7de64..7932a68942 100644 --- a/io.c +++ b/io.c @@ -2607,7 +2607,7 @@ io_getpartial(int argc, VALUE *argv, VALUE io, VALUE opts, int nonblock) * * 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. * */ -- cgit v1.2.3