Skip to content

Commit

Permalink
Merge pull request #2499 from kachick/fix-arra-max-with-block
Browse files Browse the repository at this point in the history
Fix a typo of Array#max, Enumerable#max with block
  • Loading branch information
znz authored Mar 30, 2021
2 parents 0751e6b + c6a7fb0 commit 0c695d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion refm/api/src/_builtin/Array
Original file line number Diff line number Diff line change
Expand Up @@ -2730,7 +2730,7 @@ ary.bsearch_index { |x| 4 - x / 2 } # => nil
--- max {|a, b| ... } -> object | nil
--- max(n) {|a, b| ... } -> Array

ブロックの評価結果で各要素の大小判定を行い、最大の要素、もしくは最小の
ブロックの評価結果で各要素の大小判定を行い、最大の要素、もしくは最大の
n 要素を返します。
引数を指定しない形式では要素が存在しなければ nil を返します。
引数を指定する形式では、空の配列を返します。
Expand Down
2 changes: 1 addition & 1 deletion refm/api/src/_builtin/Enumerable
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ a.max(2) # => ["horse", "dog"]
#@since 2.2.0
--- max(n) {|a, b| ... } -> Array

ブロックの評価結果で各要素の大小判定を行い、最大の要素、もしくは最小の
ブロックの評価結果で各要素の大小判定を行い、最大の要素、もしくは最大の
n 要素を返します。
引数を指定しない形式では要素が存在しなければ nil を返します。
引数を指定する形式では、空の配列を返します。
Expand Down

0 comments on commit 0c695d1

Please sign in to comment.