summaryrefslogtreecommitdiff
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
commit233a94b91e918b999135cf374de984d132246848 (patch)
treef14a90480ccef2cd9b18f8be775037eed57aa854 /io.c
parentf67fc8a43f781585da51474c3e2a1356a8f0524e (diff)
* 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/branches/ruby_1_8@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 3284ee6205..8f8dfcdf2e 100644
--- a/io.c
+++ b/io.c
@@ -3044,7 +3044,7 @@ pipe_open(pstr, pname, mode)
#if defined(DJGPP) || defined(__human68k__) || defined(__VMS) || defined(_WIN32)
if (!doexec) {
rb_raise(rb_eNotImpError,
- "The fork(2) function is unimplemented on this machine");
+ "fork() function is unimplemented on this machine");
}
#endif