From 4bef96845235a1a02dc2e1004828f061ad279d95 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Sun, 7 Dec 2025 08:24:36 +0900 Subject: [PATCH] mruby-method: standardize block parameter spacing changed block spacing from { | to {| for consistency. Co-authored-by: Claude --- mrbgems/mruby-method/mrblib/method.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrbgems/mruby-method/mrblib/method.rb b/mrbgems/mruby-method/mrblib/method.rb index efb1d5b35..b1fa60d90 100644 --- a/mrbgems/mruby-method/mrblib/method.rb +++ b/mrbgems/mruby-method/mrblib/method.rb @@ -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