Skip to content

Commit

Permalink
Cleaned an excess semicolon up [ci skip]
Browse files Browse the repository at this point in the history
which has not been removed when translated from C.
  • Loading branch information
nobu committed Jan 27, 2020
1 parent 838fa94 commit b1eae5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion array.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def shuffle!(random: Random)
#
# 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:
Expand Down

0 comments on commit b1eae5e

Please sign in to comment.