ruby-changes:36972
From: nobu <ko1@a...>
Date: Mon, 29 Dec 2014 10:37:20 +0900 (JST)
Subject: [ruby-changes:36972] nobu:r49053 (trunk): process.c: missing parenthesis
nobu 2014-12-29 10:37:07 +0900 (Mon, 29 Dec 2014) New Revision: 49053 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=49053 Log: process.c: missing parenthesis * process.c (proc_detach): [DOC] fix missing closing parenthesis. [Fix GH-799] [ci skip] Modified files: trunk/ChangeLog trunk/process.c Index: ChangeLog =================================================================== --- ChangeLog (revision 49052) +++ ChangeLog (revision 49053) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Mon Dec 29 10:37:06 2014 Thiago Lewin <thiago_lewin@y...> + + * process.c (proc_detach): [DOC] fix missing closing parenthesis. + [Fix GH-799] + Mon Dec 29 07:27:23 2014 SHIBATA Hiroshi <shibata.hiroshi@g...> * ext/json, test/json: merge JSON HEAD(17fe8e7) Index: process.c =================================================================== --- process.c (revision 49052) +++ process.c (revision 49053) @@ -978,7 +978,7 @@ rb_detach_process(rb_pid_t pid) https://github.com/ruby/ruby/blob/trunk/process.c#L978 * * 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 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/