summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorhone <hone@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-07 02:20:45 +0000
committerhone <hone@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-07 02:20:45 +0000
commit512705e62d4929753845e449397cedeff0433f05 (patch)
tree9527b02928944a07093a4b2d232c8a5d4e896ef7 /io.c
parentb75be6b798373865c8774fbc7d9b46d6121b49c8 (diff)
io.c: Typo close -> closes.
Patch by @cirosantilli [Fixes GH-757] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48735 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 0c7beedf23..f91f23ae06 100644
--- a/io.c
+++ b/io.c
@@ -6201,7 +6201,7 @@ pipe_open_s(VALUE prog, const char *modestr, int fmode, convconfig_t *convconfig
* If a block is given, Ruby will run the command as a child connected
* to Ruby with a pipe. Ruby's end of the pipe will be passed as a
* parameter to the block.
- * At the end of block, Ruby close the pipe and sets <code>$?</code>.
+ * At the end of block, Ruby closes the pipe and sets <code>$?</code>.
* In this case <code>IO.popen</code> returns
* the value of the block.
*