From 90d8b386fdb3a4edfe93497263a9293f9d5d3594 Mon Sep 17 00:00:00 2001 From: Shizuo Fujita Date: Fri, 3 Jul 2026 00:36:39 +0900 Subject: [PATCH] Fix default_node_size doc to match DEFAULT_NODE_SIZE The Coolio::Buffer.default_node_size docstring showed "-> 4096", but the actual default (DEFAULT_NODE_SIZE) is 16384, as the default_node_size= docstring already states. Co-Authored-By: Claude Opus 4.8 --- ext/cool.io/buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/cool.io/buffer.c b/ext/cool.io/buffer.c index cd3f345..3bd637c 100644 --- a/ext/cool.io/buffer.c +++ b/ext/cool.io/buffer.c @@ -145,7 +145,7 @@ Coolio_Buffer_free(void * buf) /** * call-seq: - * Coolio::Buffer.default_node_size -> 4096 + * Coolio::Buffer.default_node_size -> 16384 * * Retrieves the current value of the default node size. */