mruby-io: standardize block parameter spacing

changed block spacing from { | to {| for consistency.

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Yukihiro "Matz" Matsumoto
2025-12-06 22:07:55 +09:00
parent 7cc41d5bc0
commit e6fa93929d
+1 -1
View File
@@ -11,7 +11,7 @@ module Kernel
# `echo oops && exit 99` #=> "oops\n"
#
private def `(cmd) #`
IO.popen(cmd) { |io| io.read }
IO.popen(cmd) {|io| io.read }
end
#