From 9d7573c41a33f7759ea62b7f0d273bdcd90f2171 Mon Sep 17 00:00:00 2001 From: drbrain Date: Mon, 13 Feb 2012 21:24:01 +0000 Subject: * process.c (proc_wait): Change typo "SystemError" to "SystemCallError". [ruby-trunk - Bug #5962] * process.c (proc_wait2): ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- process.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'process.c') 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 SystemError 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 Process::Status object) of that - * child. Raises a SystemError 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 -- cgit v1.2.3