From 88d5dcc8de20a613d35827198a30010e7ed4279b Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 28 Feb 2005 02:45:23 +0000 Subject: * exception error messages updated. [ruby-core:04497] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- process.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'process.c') diff --git a/process.c b/process.c index 8a83aed98a..530665ba1e 100644 --- a/process.c +++ b/process.c @@ -1817,7 +1817,7 @@ check_uid_switch() { rb_secure(2); if (under_uid_switch) { - rb_raise(rb_eRuntimeError, "can't handle UID during evaluating the block given to the Process::UID.switch method"); + rb_raise(rb_eRuntimeError, "can't handle UID while evaluating block given to Process::UID.switch method"); } } @@ -1827,7 +1827,7 @@ check_gid_switch() { rb_secure(2); if (under_gid_switch) { - rb_raise(rb_eRuntimeError, "can't handle GID during evaluating the block given to the Process::UID.switch method"); + rb_raise(rb_eRuntimeError, "can't handle GID while evaluating block given to Process::UID.switch method"); } } -- cgit v1.2.3