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

ruby-changes:39216

From: nobu <ko1@a...>
Date: Sun, 19 Jul 2015 14:29:39 +0900 (JST)
Subject: [ruby-changes:39216] nobu:r51297 (trunk): pty.c: fix example typo [ci skip]

nobu	2015-07-19 14:29:21 +0900 (Sun, 19 Jul 2015)

  New Revision: 51297

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

  Log:
    pty.c: fix example typo [ci skip]
    
    * ext/pty/pty.c: [DOC] fix example typo, an old name at move from
      PTY.open.  [Fix GH-972]

  Modified files:
    trunk/ChangeLog
    trunk/ext/pty/pty.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 51296)
+++ ChangeLog	(revision 51297)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Sun Jul 19 14:29:18 2015  windwiny  <windwiny.ubt@g...>
+
+	* ext/pty/pty.c: [DOC] fix example typo, an old name at move from
+	  PTY.open.  [Fix GH-972]
+
 Sat Jul 18 21:29:19 2015  Nobuyoshi Nakada  <nobu@r...>
 
 	* thread.c (vm_check_ints_blocking): gather common statements at
Index: ext/pty/pty.c
===================================================================
--- ext/pty/pty.c	(revision 51296)
+++ ext/pty/pty.c	(revision 51297)
@@ -733,7 +733,7 @@ static VALUE cPTY; https://github.com/ruby/ruby/blob/trunk/ext/pty/pty.c#L733
  *   # The result of read operation when pty slave is closed is platform
  *   # dependent.
  *   ret = begin
- *           m.gets          # FreeBSD returns nil.
+ *           master.gets     # FreeBSD returns nil.
  *         rescue Errno::EIO # GNU/Linux raises EIO.
  *           nil
  *         end

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

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