mruby-method: 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-07 08:24:36 +09:00
parent 8b0a4519b1
commit 4bef968452
+1 -1
View File
@@ -20,7 +20,7 @@ class Method
#
def to_proc
m = self
lambda { |*args, **opts, &b|
lambda {|*args, **opts, &b|
m.call(*args, **opts, &b)
}
end