1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Cleaned an excess semicolon up [ci skip]

which has not been removed when translated from C.
This commit is contained in:
Nobuyoshi Nakada 2020-01-27 09:38:30 +09:00
parent 838fa941f1
commit b1eae5e15e
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -31,7 +31,7 @@ class Array
#
# a.shuffle(random: Random.new(1)) #=> [1, 3, 2]
def shuffle(random: Random)
__builtin_rb_ary_shuffle(random);
__builtin_rb_ary_shuffle(random)
end
# call-seq: