Skip to content

Commit b9d539d

Browse files
array.jl: filter(f) compat should be 1.9 not 1.8 (#47045)
1 parent 7f507e6 commit b9d539d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

base/array.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -2653,8 +2653,8 @@ julia> map(filter(iseven), [1:3, 2:4, 3:5])
26532653
[2, 4]
26542654
[4]
26552655
```
2656-
!!! compat "Julia 1.8"
2657-
This method requires at least Julia 1.8.
2656+
!!! compat "Julia 1.9"
2657+
This method requires at least Julia 1.9.
26582658
"""
26592659
function filter(f)
26602660
Fix1(filter, f)

0 commit comments

Comments
 (0)