diff options
author | a_matsuda <a_matsuda@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-01-07 14:29:41 +0000 |
---|---|---|
committer | a_matsuda <a_matsuda@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-01-07 14:29:41 +0000 |
commit | 38e89273ede48d5864bca9a9450dd2ab6bae85d9 (patch) | |
tree | 774a3bd4c5ddf0a6455fdfdb3750a5f960dce580 /numeric.c | |
parent | 1fa01c12df09fa82430bd36c29219a919f83b2d9 (diff) | |
download | ruby-38e89273ede48d5864bca9a9450dd2ab6bae85d9.tar.gz |
* numeric.c: Fix typo in an error message
s/unsgined/unsigned/
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44522 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r-- | numeric.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2316,7 +2316,7 @@ rb_num2ull(VALUE val) snprintf(buf, sizeof(buf), "%-.10g", RFLOAT_VALUE(val)); if ((s = strchr(buf, ' ')) != 0) *s = '\0'; - rb_raise(rb_eRangeError, "float %s out of range of unsgined long long", buf); + rb_raise(rb_eRangeError, "float %s out of range of unsigned long long", buf); } } else if (RB_TYPE_P(val, T_BIGNUM)) { |