Skip to content

Commit 912460b

Browse files
authored
Use Julian way ≥(0) in findall docs (#53740)
I'm pretty sure the manual advises against `x -> x >= 0` :)
1 parent 67cdb9b commit 912460b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/array.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2635,7 +2635,7 @@ Dict{Symbol, Int64} with 3 entries:
26352635
:B => -1
26362636
:C => 0
26372637
2638-
julia> findall(x -> x >= 0, d)
2638+
julia> findall(≥(0), d)
26392639
2-element Vector{Symbol}:
26402640
:A
26412641
:C

0 commit comments

Comments
 (0)