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

ruby-changes:22538

From: drbrain <ko1@a...>
Date: Tue, 14 Feb 2012 06:24:11 +0900 (JST)
Subject: [ruby-changes:22538] drbrain:r34587 (trunk): * process.c (proc_wait): Change typo "SystemError" to

drbrain	2012-02-14 06:24:01 +0900 (Tue, 14 Feb 2012)

  New Revision: 34587

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

  Log:
    * process.c (proc_wait):  Change typo "SystemError" to
      "SystemCallError".  [ruby-trunk - Bug #5962]
    * process.c (proc_wait2):  ditto

  Modified files:
    trunk/ChangeLog
    trunk/process.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 34586)
+++ ChangeLog	(revision 34587)
@@ -1,3 +1,9 @@
+Tue Feb 14 05:23:40 2012  Eric Hodel  <drbrain@s...>
+
+	* process.c (proc_wait):  Change typo "SystemError" to
+	  "SystemCallError".  [ruby-trunk - Bug #5962]
+	* process.c (proc_wait2):  ditto
+
 Tue Feb 14 05:18:24 2012  Eric Hodel  <drbrain@s...>
 
 	* enumerator.c:  Document use of Enumerator.new for creating a lazy
Index: process.c
===================================================================
--- process.c	(revision 34586)
+++ process.c	(revision 34587)
@@ -750,8 +750,8 @@
  *  haven't been reported). Not all flags are available on all
  *  platforms, but a flag value of zero will work on all platforms.
  *
- *  Calling this method raises a <code>SystemError</code> if there are
- *  no child processes. Not available on all platforms.
+ *  Calling this method raises a SystemCallError if there are no child
+ *  processes. Not available on all platforms.
  *
  *     include Process
  *     fork { exit 99 }                 #=> 27429
@@ -803,8 +803,7 @@
  *  Waits for a child process to exit (see Process::waitpid for exact
  *  semantics) and returns an array containing the process id and the
  *  exit status (a <code>Process::Status</code> object) of that
- *  child. Raises a <code>SystemError</code> if there are no child
- *  processes.
+ *  child. Raises a SystemCallError if there are no child processes.
  *
  *     Process.fork { exit 99 }   #=> 27437
  *     pid, status = Process.wait2

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

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