Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
String#dumpのサンプルコードの実行例がruby-1.9.0-0よりも前の古い結果となっていたため修正しました。 ``` $ docker run -it --rm rubylang/all-ruby ./all-ruby -e 'puts "abc\r\n\f\x00\b10\\\"".dump' ... ruby-1.1c6 "abc\r\n\f\000\01010\\\" ruby-1.1c7 "abc\r\n\f\016\01010\\\" ruby-1.1c8 "abc\r\n\f\000\01010\\\" ruby-1.1c9 "abc\r\n\f\000\01010\\\" ruby-1.1d0 "abc\r\n\f\000\01010\\\"" ruby-1.1d1 "abc\r\n\f\000\01010\\\"" ruby-1.2 "abc\r\n\f\000\01010\\\" ... ruby-1.2.3 "abc\r\n\f\000\01010\\\" ruby-1.2.4 "abc\r\n\f\000\01010\\\"" ... ruby-1.8.5-preview1 "abc\r\n\f\000\01010\\\"" ruby-1.8.5-preview2 "abc\r\n\f\000\b10\\\"" ... ruby-1.8.7-p374 "abc\r\n\f\000\b10\\\"" ruby-1.9.0-0 "abc\r\n\f\x00\b10\\\"" ... ruby-3.3.0 "abc\r\n\f\x00\b10\\\"" ```
- Loading branch information