diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-04-04 15:42:16 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-04-04 15:42:16 +0000 |
commit | f1796fdb2c0473f2362a79402e1d9417cf2b6f96 (patch) | |
tree | 5e7befe525fdb14e5f2896b0eaa43e61e7292167 /io.c | |
parent | 8259e4aa9a140b9584dec2be4e542dfbd71a40ad (diff) | |
download | ruby-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |