From c4bca7cbb3eda883c7b09b6c0568a90fb8a85a5d Mon Sep 17 00:00:00 2001 From: dearblue Date: Sun, 28 Nov 2021 18:21:29 +0900 Subject: Align "wrong number of arguments" messages Make "N for M" into the form "given N, expected M". As I worked, I noticed that the `argnum_error()` function had a part to include the method name in the message. I think this part is no longer needed by https://github.com/mruby/mruby/pull/5394. - Before this patch ```console % bin/mruby -e '[1, 2, 3].each 0' trace (most recent call last): [1] -e:1 -e:1:in each: 'each': wrong number of arguments (1 for 0) (ArgumentError) ``` - After this patch ```console % bin/mruby -e '[1, 2, 3].each 0' trace (most recent call last): [1] -e:1 -e:1:in each: wrong number of arguments (given 1, expected 0) (ArgumentError) ``` --- mrbgems/mruby-proc-ext/mrblib/proc.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mrbgems/mruby-proc-ext/mrblib/proc.rb') diff --git a/mrbgems/mruby-proc-ext/mrblib/proc.rb b/mrbgems/mruby-proc-ext/mrblib/proc.rb index 3be0afbbc..0c0df205e 100644 --- a/mrbgems/mruby-proc-ext/mrblib/proc.rb +++ b/mrbgems/mruby-proc-ext/mrblib/proc.rb @@ -21,7 +21,7 @@ class Proc self_arity = self.arity if (self_arity >= 0 && arity != self_arity) || (self_arity < 0 && abs[self_arity] > arity) - raise ArgumentError, "wrong number of arguments (#{arity} for #{abs[self_arity]})" + raise ArgumentError, "wrong number of arguments (given #{arity}, expected #{abs[self_arity]})" end end -- cgit v1.2.3