Repair documentation markup in object.c

Issue was visible in https://docs.ruby-lang.org/en/3.4/Kernel.html#module-Kernel-label-IO
This commit is contained in:
Olle Jonsson 2025-01-22 16:29:38 +01:00 committed by Hiroshi SHIBATA
parent 5b1caffcba
commit 5244fd3243
Notes: git 2025-01-23 00:28:20 +00:00

View File

@ -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 <tt.$stdout.putc(object)</tt> for the given object.
* - #putc: Equivalent to <tt>$stdout.putc(object)</tt> for the given object.
* - #puts: Equivalent to <tt>$stdout.puts(*objects)</tt> 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.