diff --git a/doc/string/bytes.rdoc b/doc/string/bytes.rdoc index a9e89f1cd1..f4b071f630 100644 --- a/doc/string/bytes.rdoc +++ b/doc/string/bytes.rdoc @@ -4,3 +4,5 @@ Returns an array of the bytes in +self+: 'тест'.bytes # => [209, 130, 208, 181, 209, 129, 209, 130] 'こんにちは'.bytes # => [227, 129, 147, 227, 130, 147, 227, 129, 171, 227, 129, 161, 227, 129, 175] + +Related: see {Converting to Non-String}[rdoc-ref:String@Converting+to+Non--5CString].