Skip to content

Commit

Permalink
array.jl: filter(f) compat should be 1.9 not 1.8 (JuliaLang#47045)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKarpinski authored Oct 4, 2022
1 parent 7f507e6 commit b9d539d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/array.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2653,8 +2653,8 @@ julia> map(filter(iseven), [1:3, 2:4, 3:5])
[2, 4]
[4]
```
!!! compat "Julia 1.8"
This method requires at least Julia 1.8.
!!! compat "Julia 1.9"
This method requires at least Julia 1.9.
"""
function filter(f)
Fix1(filter, f)
Expand Down

0 comments on commit b9d539d

Please sign in to comment.