Skip to content

Commit 11bc340

Browse files
authored
Updated docstring src/findall.jl (#80)
1 parent a93bdce commit 11bc340

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/findall.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ julia> x = range(0,stop=3,length=10)
1111
0.0:0.3333333333333333:3.0
1212
1313
julia> collect(x)'
14-
1×10 LinearAlgebra.Adjoint{Float64,Array{Float64,1}}:
14+
1×10 adjoint(::Vector{Float64}) with eltype Float64:
1515
0.0 0.333333 0.666667 1.0 1.33333 1.66667 2.0 2.33333 2.66667 3.0
1616
1717
julia> findall(in(1..6), x)
@@ -24,7 +24,7 @@ julia> y = 8:-0.5:0
2424
8.0:-0.5:0.0
2525
2626
julia> collect(y)'
27-
1×17 LinearAlgebra.Adjoint{Float64,Array{Float64,1}}:
27+
1×17 adjoint(::Vector{Float64}) with eltype Float64:
2828
8.0 7.5 7.0 6.5 6.0 5.5 5.0 4.5 4.0 3.5 3.0 2.5 2.0 1.5 1.0 0.5 0.0
2929
3030
julia> findall(in(1..6), y)

0 commit comments

Comments
 (0)