diff options
author | BurdetteLamar <[email protected]> | 2023-02-19 22:27:41 +0000 |
---|---|---|
committer | git <[email protected]> | 2023-02-25 08:38:19 +0000 |
commit | d3ee9e590caa2177abd9b1a52b30ff63aaa68c8f (patch) | |
tree | a841c3d4eb51b3d51c677bb3cc3bb73075757e8a /ext/stringio | |
parent | f94e83faa04d99a6deac49b8c0a14c585aeea59a (diff) |
[ruby/stringio] Remove (newly unneeded) remarks about aliases
https://github.com/ruby/stringio/commit/60bb320477
Diffstat (limited to 'ext/stringio')
-rw-r--r-- | ext/stringio/stringio.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/stringio/stringio.c b/ext/stringio/stringio.c index f48f967ce9..46f334e945 100644 --- a/ext/stringio/stringio.c +++ b/ext/stringio/stringio.c @@ -685,8 +685,6 @@ strio_to_read(VALUE self) * see {Position}[rdoc-ref:File@Position]. * * Raises IOError if the stream is not opened for reading. - * - * StreamIO#eof is an alias for StreamIO#eof?. */ static VALUE strio_eof(VALUE self) @@ -808,8 +806,6 @@ strio_reopen(int argc, VALUE *argv, VALUE self) * * Returns the current position (in bytes); * see {Position}[rdoc-ref:IO@Position]. - * - * StringIO#tell is an alias for StringIO#pos. */ static VALUE strio_get_pos(VALUE self) @@ -1420,8 +1416,6 @@ strio_readline(int argc, VALUE *argv, VALUE self) * does nothing if already at end-of-file; * returns +self+. * See {Line IO}[rdoc-ref:IO@Line+IO]. - * - * StringIO#each is an alias for StringIO#each_line. */ static VALUE strio_each(int argc, VALUE *argv, VALUE self) |