mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user