Skip to content

Commit

Permalink
Use Julian way ≥(0) in findall docs (JuliaLang#53740)
Browse files Browse the repository at this point in the history
I'm pretty sure the manual advises against `x -> x >= 0` :)
  • Loading branch information
JeffFessler authored Mar 15, 2024
1 parent 67cdb9b commit 912460b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/array.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2635,7 +2635,7 @@ Dict{Symbol, Int64} with 3 entries:
:B => -1
:C => 0
julia> findall(x -> x >= 0, d)
julia> findall(≥(0), d)
2-element Vector{Symbol}:
:A
:C
Expand Down

0 comments on commit 912460b

Please sign in to comment.