diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-09 16:19:33 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-09 16:19:33 +0000 |
| commit | 0b4f6bf0432edd048f835a92c026c957a73caa56 (patch) | |
| tree | e6a32b633e3ff92ee6a6f50b41ffb70cb9299b66 /string.c | |
| parent | b869c9abf0911d3e35b25805b206614baf02f6d6 (diff) | |
| download | ruby-0b4f6bf0432edd048f835a92c026c957a73caa56.tar.gz ruby-0b4f6bf0432edd048f835a92c026c957a73caa56.tar.xz ruby-0b4f6bf0432edd048f835a92c026c957a73caa56.zip | |
* file.c (rb_f_test): test(0) should not have any special
meaning. [ruby-dev:29425]
* file.c (rb_f_test): properer error message.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10900 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
| -rw-r--r-- | string.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2501,12 +2501,12 @@ rb_str_to_s(VALUE str) * call-seq: * str.inspect => string * - * Returns a printable version of _str_, with special characters - * escaped. + * Returns a printable version of _str_, srrounded by quote marks, + * with special characters escaped. * * str = "hello" - * str[3] = 8 - * str.inspect #=> "hel\010o" + * str[3] = "\b" + * str.inspect #=> "\"hel\bo\"" */ VALUE |
