aboutsummaryrefslogtreecommitdiffstats
path: root/vm_insnhelper.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r--vm_insnhelper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index 7f4a371423..07b7b02385 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -216,13 +216,13 @@ rb_arity_error_new(int argc, int min, int max)
{
VALUE err_mess = 0;
if (min == max) {
- err_mess = rb_sprintf("wrong number of arguments (%d for %d)", argc, min);
+ err_mess = rb_sprintf("wrong number of arguments (given %d, expected %d)", argc, min);
}
else if (max == UNLIMITED_ARGUMENTS) {
- err_mess = rb_sprintf("wrong number of arguments (%d for %d+)", argc, min);
+ err_mess = rb_sprintf("wrong number of arguments (given %d, expected %d+)", argc, min);
}
else {
- err_mess = rb_sprintf("wrong number of arguments (%d for %d..%d)", argc, min, max);
+ err_mess = rb_sprintf("wrong number of arguments (given %d, expected %d..%d)", argc, min, max);
}
return rb_exc_new3(rb_eArgError, err_mess);
}