Doc: fix documentation typo for Array#min

This commit is contained in:
Rogerio Bordignon 2022-03-03 12:18:21 -03:00 committed by Jean Boussier
parent 3b21818db1
commit 832252794e
Notes: git 2022-03-04 03:19:06 +09:00

View File

@ -8110,7 +8110,7 @@ rb_ary_deconstruct(VALUE ary)
* #last:: Returns one or more trailing elements. * #last:: Returns one or more trailing elements.
* #max:: Returns one or more maximum-valued elements, * #max:: Returns one or more maximum-valued elements,
* as determined by <tt><=></tt> or a given block. * as determined by <tt><=></tt> or a given block.
* #max:: Returns one or more minimum-valued elements, * #min:: Returns one or more minimum-valued elements,
* as determined by <tt><=></tt> or a given block. * as determined by <tt><=></tt> or a given block.
* #minmax:: Returns the minimum-valued and maximum-valued elements, * #minmax:: Returns the minimum-valued and maximum-valued elements,
* as determined by <tt><=></tt> or a given block. * as determined by <tt><=></tt> or a given block.