Skip to content

Commit cb6323a

Browse files
Merge pull request #263 from SciML/ChrisRackauckas-patch-1
Fix typo in recipes to use symbol cache
2 parents 9ad9694 + e614788 commit cb6323a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vector_of_array.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,8 +441,8 @@ end
441441
convert(Array, VA)
442442
end
443443
@recipe function f(VA::AbstractDiffEqArray)
444-
xguide --> ((VA.indepsym !== nothing) ? string(VA.indepsym) : "")
445-
label --> ((VA.syms !== nothing) ? reshape(string.(VA.syms), 1, :) : "")
444+
xguide --> ((VA.sc.indepsym !== nothing) ? string(VA.sc.indepsym) : "")
445+
label --> ((VA.sc.syms !== nothing) ? reshape(string.(VA.sc.syms), 1, :) : "")
446446
VA.t, VA'
447447
end
448448
@recipe function f(VA::DiffEqArray{T, 1}) where {T}

0 commit comments

Comments
 (0)