aboutsummaryrefslogtreecommitdiffstats
path: root/process.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-02 08:18:39 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-02 08:18:39 +0000
commit43a593ff4b2ca97224349dae386d67fd09085e6c (patch)
tree8249decae6285480723ec1c9ce65c7ff877216ac /process.c
parentacdd2be4a83ec607422c9cdabbaa98c129bbb512 (diff)
downloadruby-43a593ff4b2ca97224349dae386d67fd09085e6c.tar.gz
Fix typo in Process.detatch doc [ci skip]
* process.c (proc_detach): [DOC] fix typo "intent" as "intend" in rdoc. [Fix GH-1011] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51739 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 2366cbd289..e368676502 100644
--- a/process.c
+++ b/process.c
@@ -1084,7 +1084,7 @@ rb_detach_process(rb_pid_t pid)
* <code>Process::detach</code> prevents this by setting up a
* separate Ruby thread whose sole job is to reap the status of the
* process _pid_ when it terminates. Use <code>detach</code>
- * only when you do not intent to explicitly wait for the child to
+ * only when you do not intend to explicitly wait for the child to
* terminate.
*
* The waiting thread returns the exit status of the detached process