diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-09-24 02:28:25 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-09-24 02:28:25 +0000 |
commit | 0cc169d1de0decb3fae626a4b30297b7f4792745 (patch) | |
tree | c9ebb037e938da67a5ea9eac8215d369c6727fcd /process.c | |
parent | 967c01339126acb078e79fb9a9a618a435a27dba (diff) | |
download | ruby-0cc169d1de0decb3fae626a4b30297b7f4792745.tar.gz |
fid typos [ci skip]
* fix typos, "a" before "Integer" to "an". [Fix GH-1438]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56225 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r-- | process.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4188,7 +4188,7 @@ rb_f_system(int argc, VALUE *argv) * * pid = spawn(command, :umask=>077) * - * The :in, :out, :err, a integer, an IO and an array key specifies a redirection. + * The :in, :out, :err, an integer, an IO and an array key specifies a redirection. * The redirection maps a file descriptor in the child process. * * For example, stderr can be merged into stdout as follows: |