Skip to content

Commit

Permalink
Use Julian way ≥(0) in findall docs (#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 committed 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

2 comments on commit 912460b

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The package evaluation job you requested has completed - possible new issues were detected.
The full report is available.

Please sign in to comment.