aboutsummaryrefslogtreecommitdiffstats
path: root/process.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-29 01:37:07 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-29 01:37:07 +0000
commit76ec09062a9a747eb44b3dd7024776fc3966a8a1 (patch)
tree5f0756821ca94d6b56203945fee9827cd6906b12 /process.c
parent6a488fdedafa68f1722eded7a1ef87fe8f63f3ae (diff)
downloadruby-76ec09062a9a747eb44b3dd7024776fc3966a8a1.tar.gz
process.c: missing parenthesis
* process.c (proc_detach): [DOC] fix missing closing parenthesis. [Fix GH-799] [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49053 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r--process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/process.c b/process.c
index 9d9f5deb33..88606c34eb 100644
--- a/process.c
+++ b/process.c
@@ -978,7 +978,7 @@ rb_detach_process(rb_pid_t pid)
*
* Some operating systems retain the status of terminated child
* processes until the parent collects that status (normally using
- * some variant of <code>wait()</code>. If the parent never collects
+ * some variant of <code>wait()</code>). If the parent never collects
* this status, the child stays around as a <em>zombie</em> process.
* <code>Process::detach</code> prevents this by setting up a
* separate Ruby thread whose sole job is to reap the status of the