From 1e2df9f9dc4907964f31a48ac52f2938cf6d33df Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Thu, 25 Jun 2026 14:24:37 +0900 Subject: [PATCH] Fix wrong call-seq for `JSON::ResumableParser#eos?` --- ext/json/ext/parser/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/json/ext/parser/parser.c b/ext/json/ext/parser/parser.c index 9a86cd58..757c5870 100644 --- a/ext/json/ext/parser/parser.c +++ b/ext/json/ext/parser/parser.c @@ -2712,7 +2712,7 @@ static VALUE cResumableParser_rest(VALUE self) } /* - * call-seq: value? -> true or false + * call-seq: eos? -> true or false * * Returns whether the internal buffer has been entirely consumed. */