Skip to content
Snippets Groups Projects
Commit 0a37a6dd authored by Ben Cumming's avatar Ben Cumming Committed by GitHub
Browse files

Merge pull request #44 from halfflat/bugfix/julia-symbol-warning

Address deprecated use of 'symbol' warning.
parents 49ed2433 78c8e12a
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