random.c: improve docs for Random.bytes

* random.c: [DOC] improve language and RDoc markup in Random.bytes docs;
  also adjust call-seq style of Random.bytes and Random#bytes.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63154 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
stomar 2018-04-14 16:45:46 +00:00
Родитель 136643a876
Коммит 5c5b64c60b
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -1084,7 +1084,7 @@ random_ulong_limited_big(VALUE obj, rb_random_t *rnd, VALUE vmax)
static VALUE genrand_bytes(rb_random_t *rnd, long n);
/*
* call-seq: prng.bytes(size) -> a_string
* call-seq: prng.bytes(size) -> string
*
* Returns a random binary string containing +size+ bytes.
*
@ -1135,10 +1135,10 @@ rb_random_bytes(VALUE obj, long n)
}
/*
* call-seq: Random.bytes(size) -> a_string
* call-seq: Random.bytes(size) -> string
*
* Returns a random binary string. The argument size specified the length of
* the result string.
* Returns a random binary string.
* The argument +size+ specifies the length of the returned string.
*/
static VALUE
random_s_bytes(VALUE obj, VALUE len)