* 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
This commit is contained in:
eregon 2013-05-18 21:23:15 +00:00
Родитель 42b8654bf0
Коммит 30f813ddf2
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;
}