Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ext/stringio/stringio.c
Original file line number Diff line number Diff line change
Expand Up @@ -875,9 +875,9 @@ strio_rewind(VALUE self)
* call-seq:
* seek(offset, whence = SEEK_SET) -> 0
*
* Sets the current position to the given integer +offset+ (in bytes),
* Sets the position to the given integer +offset+ (in bytes),
* with respect to a given constant +whence+;
* see {Position}[rdoc-ref:IO@Position].
* see {IO#seek}[https://docs.ruby-lang.org/en/master/IO.html#method-i-seek].
*/
static VALUE
strio_seek(int argc, VALUE *argv, VALUE self)
Expand Down
Loading