Skip to content
Snippets Groups Projects
Commit dbca304b authored by Sam Yates's avatar Sam Yates
Browse files

Address deprecated use of 'symbol' warning.

Julia 0.5 deprecates use of `symbol` instead of
`Symbol`. This patch just substitutes the
correct call.
parent 3201d721
No related branches found
No related tags found
No related merge requests found
......@@ -55,9 +55,9 @@ trace = Dict(
:units => "mV",
:data => Dict(
:time => map(t->t/ms, ts),
symbol("cable.x0.0") => map(v->v/mV, run_cable(0, ts)),
symbol("cable.x0.3") => map(v->v/mV, run_cable(0.3, ts)),
symbol("cable.x1.0") => map(v->v/mV, run_cable(1.0, ts))
Symbol("cable.x0.0") => map(v->v/mV, run_cable(0, ts)),
Symbol("cable.x0.3") => map(v->v/mV, run_cable(0.3, ts)),
Symbol("cable.x1.0") => map(v->v/mV, run_cable(1.0, ts))
)
)
......
......@@ -19,7 +19,7 @@ trace = Dict(
:units => "mV",
:data => Dict(
:time => map(t->t/ms, ts),
symbol("soma.mid") => map(v->v/mV, vs)
Symbol("soma.mid") => map(v->v/mV, vs)
)
)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment