Fix documentation for Array#pack m directive count specifier [ci skip]

Fixes [Bug #10025]
This commit is contained in:
Jeremy Evans 2019-07-09 21:33:01 -07:00
Родитель 9f9a6dbc14
Коммит 2f6cc00338
1 изменённых файлов: 3 добавлений и 1 удалений

4
pack.c
Просмотреть файл

@ -286,8 +286,10 @@ VALUE_to_float(VALUE obj)
* u | String | UU-encoded string
* M | String | quoted printable, MIME encoding (see also RFC2045)
* | | (text mode but input must use LF and output LF)
* m | String | base64 encoded string (see RFC 2045, count is width)
* m | String | base64 encoded string (see RFC 2045)
* | | (if count is 0, no line feed are added, see RFC 4648)
* | | (count specifies input bytes between each LF,
* | | rounded down to nearest multiple of 3)
* P | String | pointer to a structure (fixed-length string)
* p | String | pointer to a null-terminated string
*