mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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:
parent
136643a876
commit
5c5b64c60b
1 changed files with 4 additions and 4 deletions
8
random.c
8
random.c
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue