summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--process.c7
2 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 83276c91d7..c4f05a0e4d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Feb 14 05:23:40 2012 Eric Hodel <drbrain@segment7.net>
+
+ * 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@segment7.net>
* enumerator.c: Document use of Enumerator.new for creating a lazy
diff --git a/process.c b/process.c
index 3e135ef69a..027e4e6ed4 100644
--- a/process.c
+++ b/process.c
@@ -750,8 +750,8 @@ rb_waitpid(rb_pid_t pid, int *st, int flags)
* 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 @@ proc_wait(int argc, VALUE *argv)
* 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