summaryrefslogtreecommitdiffstats
path: root/complex.c
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-29 14:26:16 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-29 14:26:16 +0000
commite0d0043ac9a18a48739e41efbc16ed0ba3ade35b (patch)
tree442854feaeec204ccbfe3d1202ee3a717135562d /complex.c
parent9ba8470dee98b8da2c813aed8ce2b420abd6548a (diff)
downloadruby-e0d0043ac9a18a48739e41efbc16ed0ba3ade35b.tar.gz
ruby-e0d0043ac9a18a48739e41efbc16ed0ba3ade35b.tar.xz
ruby-e0d0043ac9a18a48739e41efbc16ed0ba3ade35b.zip
* bignum.c (rb_cstr_to_inum): changed an error message.
* complex.c (string_to_c_strict): ditto. * rational.c (string_to_r_strict): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21180 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'complex.c')
-rw-r--r--complex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/complex.c b/complex.c
index 390658b48..49ce51f90 100644
--- a/complex.c
+++ b/complex.c
@@ -1210,7 +1210,7 @@ string_to_c_strict(VALUE self)
VALUE a = string_to_c_internal(self);
if (NIL_P(RARRAY_PTR(a)[0]) || RSTRING_LEN(RARRAY_PTR(a)[1]) > 0) {
VALUE s = f_inspect(self);
- rb_raise(rb_eArgError, "invalid value for Complex: %s",
+ rb_raise(rb_eArgError, "invalid value for convert(): %s",
StringValuePtr(s));
}
return RARRAY_PTR(a)[0];