From e48a4dfa694c84b492a130999bcb616d01bc9db9 Mon Sep 17 00:00:00 2001 From: BurdetteLamar Date: Fri, 7 Nov 2025 00:49:25 +0000 Subject: [PATCH] [DOC] Fix #seek link --- ext/stringio/stringio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/stringio/stringio.c b/ext/stringio/stringio.c index 874a3a1..c3d74d8 100644 --- a/ext/stringio/stringio.c +++ b/ext/stringio/stringio.c @@ -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)