summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-22 12:32:30 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-22 12:32:30 +0000
commit1d9f6c92b7695639df5ad56234e22635665495b1 (patch)
tree65eb90a4f60f5a338a7ec8776b365f485fb3170d /ext
parent8d1e0c0a5a358a47c0f1683faeb45ba7ceaefb93 (diff)
update rdoc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23544 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/pty/pty.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/pty/pty.c b/ext/pty/pty.c
index c44953ca13..5db349872c 100644
--- a/ext/pty/pty.c
+++ b/ext/pty/pty.c
@@ -437,8 +437,8 @@ pty_close_pty(VALUE assoc)
/*
* call-seq:
- * master_io, slave_file = PTY.open
- * PTY.open {|master_io, slave_file| ... }
+ * PTY.open => [master_io, slave_file]
+ * PTY.open {|master_io, slave_file| ... } => block value
*
* Allocates a pty (pseudo-terminal).
*
@@ -450,7 +450,7 @@ pty_close_pty(VALUE assoc)
* The value of the block is returned.
* master_io and slave_file is closed when return if they are not closed.
*
- * The filename of the slave_file is slave_file.path.
+ * The path name of the terminal device can be gotten by slave_file.path.
*
* PTY.open {|m, s|
* p m #=> #<IO: pty /dev/pts/1>