diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-07-17 01:22:32 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-07-17 01:22:32 +0000 |
commit | 985961769d4a4684300ec05602fd7d82c7a29e38 (patch) | |
tree | 8ad50aca2d39ee2e51fe951004bf8cbe7006542b /error.c | |
parent | 25510c1c2c02e5df2f1aabebbb0c7bc6d6f01111 (diff) | |
download | ruby-985961769d4a4684300ec05602fd7d82c7a29e38.tar.gz |
Fix message when `order` was an invalid value
The symbol that can be used is `:bottom`, not `:down`.
Ref: https://github.com/ruby/ruby/blob/e39b2cff8ac2dc93b35bd43ffcce3ded8e3b4c25/error.c#L1061
[Fix GH-1916]
From: yuuji.yaginuma <yuuji.yaginuma@gmail.com>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63984 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'error.c')
-rw-r--r-- | error.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1061,7 +1061,7 @@ exc_full_message(int argc, VALUE *argv, VALUE exc) if (id == id_bottom) args[kw_order] = Qtrue; else if (id == id_top) args[kw_order] = Qfalse; else { - rb_raise(rb_eArgError, "expected :top or :down as " + rb_raise(rb_eArgError, "expected :top or :bottom as " "order: %+"PRIsVALUE, args[kw_order]); } } |