aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-04-04 15:42:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-04-04 15:42:16 +0000
commitf1796fdb2c0473f2362a79402e1d9417cf2b6f96 (patch)
tree5e7befe525fdb14e5f2896b0eaa43e61e7292167 /io.c
parent8259e4aa9a140b9584dec2be4e542dfbd71a40ad (diff)
downloadruby-f1796fdb2c0473f2362a79402e1d9417cf2b6f96.tar.gz
* error.c (rb_notimplement), io.c (pipe_open): removed definite
articles and UNIX manual section from messages. [ruby-dev:30690] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12147 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 37c96b9233..c1f6b0922b 100644
--- a/io.c
+++ b/io.c
@@ -3080,7 +3080,7 @@ pipe_open(int argc, VALUE *argv, const char *mode)
#if !defined(HAVE_FORK)
if (!doexec) {
rb_raise(rb_eNotImpError,
- "The fork(2) function is unimplemented on this machine");
+ "fork() function is unimplemented on this machine");
}
#endif