summaryrefslogtreecommitdiff
path: root/process.c
diff options
context:
space:
mode:
authorayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-01-03 06:53:49 +0000
committerayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-01-03 06:53:49 +0000
commit9ecd19a7f841bf3c8b94507b295ac2e6207510ad (patch)
tree7610c94369f61e8c1e9957cfeb8a11915a4415c1 /process.c
parentc38dec6d3b1c775b93289c4f3086a87787d4c959 (diff)
* process.c: Fix typo. patch from Aviv Ben-Yosef.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34197 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 b3bdc8d8c8..11fb0d81fb 100644
--- a/process.c
+++ b/process.c
@@ -3277,7 +3277,7 @@ rb_f_system(int argc, VALUE *argv)
* This is different from fd.
* For example, :err=>:out means redirecting child stderr to parent stdout.
* But :err=>[:child, :out] means redirecting child stderr to child stdout.
- * They differs if stdout is redirected in the child process as follows.
+ * They differ if stdout is redirected in the child process as follows.
*
* # stdout and stderr is redirected to log file.
* # The file "log" is opened just once.