From 30f813ddf2d9f29a10ed9a5e3de3dbb1f2cae4c4 Mon Sep 17 00:00:00 2001 From: eregon Date: Sat, 18 May 2013 21:23:15 +0000 Subject: * object.c (rb_inspect): fix typo and error message git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40822 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- object.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'object.c') diff --git a/object.c b/object.c index 44cab14521..bcf021dc95 100644 --- a/object.c +++ b/object.c @@ -428,7 +428,7 @@ rb_any_to_s(VALUE obj) /* * If the default external encoding is ASCII compatible, the encoding of * inspected result must be compatible with it. - * If the default external encoding is ASCII incomapatible, + * If the default external encoding is ASCII incompatible, * the result must be ASCII only. */ VALUE @@ -442,7 +442,7 @@ rb_inspect(VALUE obj) return str; } if (rb_enc_get(str) != ext && !rb_enc_str_asciionly_p(str)) - rb_raise(rb_eEncCompatError, "inspected result must be ASCII only or use the same encoding with default external"); + rb_raise(rb_eEncCompatError, "inspected result must be ASCII only or use the default external encoding"); return str; } -- cgit v1.2.3