From 5244fd32431aeca9c46ab03bdf0d252d833353bb Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Wed, 22 Jan 2025 16:29:38 +0100 Subject: [PATCH] Repair documentation markup in object.c Issue was visible in https://docs.ruby-lang.org/en/3.4/Kernel.html#module-Kernel-label-IO --- object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/object.c b/object.c index 8fe131c18a..248a65a64b 100644 --- a/object.c +++ b/object.c @@ -4350,7 +4350,7 @@ InitVM_Object(void) * - #print: Prints the given objects to standard output without a newline. * - #printf: Prints the string resulting from applying the given format string * to any additional arguments. - * - #putc: Equivalent to for the given object. + * - #putc: Equivalent to $stdout.putc(object) for the given object. * - #puts: Equivalent to $stdout.puts(*objects) for the given objects. * - #readline: Similar to #gets, but raises an exception at the end of file. * - #readlines: Returns an array of the remaining lines from the current input.