[Doc] Fix Array#difference call-seq

Closes: https://github.com/ruby/ruby/pull/2255
This commit is contained in:
Kenichi Kamiya 2019-06-24 17:33:30 +09:00 committed by Hiroshi SHIBATA
parent 4173258fd0
commit 84829392f5
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -4545,7 +4545,7 @@ rb_ary_diff(VALUE ary1, VALUE ary2)
/* /*
* call-seq: * call-seq:
* ary.difference(other_ary1, other_ary2, ...) -> ary * ary.difference(other_ary1, other_ary2, ...) -> new_ary
* *
* Array Difference * Array Difference
* *