[DOC] Remove a garbage in an example

This commit is contained in:
Nobuyoshi Nakada 2025-06-27 22:27:25 +09:00
parent d9b2d89976
commit 4965954556
No known key found for this signature in database
GPG key ID: 3582D74E1FEE4465

2
io.c
View file

@ -10668,7 +10668,7 @@ argf_readlines(int argc, VALUE *argv, VALUE argf)
* $ `date` # => "Wed Apr 9 08:56:30 CDT 2003\n"
* $ `echo oops && exit 99` # => "oops\n"
* $ $? # => #<Process::Status: pid 17088 exit 99>
* $ $?.exitstatus # => 99>
* $ $?.exitstatus # => 99
*
* The built-in syntax <tt>%x{...}</tt> uses this method.
*