From 72df06e68e44b5e9f7c47b23a3a3dc43630ef73f Mon Sep 17 00:00:00 2001 From: Sam Yates <halfflat@gmail.com> Date: Fri, 18 Sep 2020 09:04:06 +0200 Subject: [PATCH] Fix misleading typo in cable cel python docs. (#1153) Fixes #1149. --- doc/cable_cell.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/cable_cell.rst b/doc/cable_cell.rst index 0cc1f13a..1f0cebef 100644 --- a/doc/cable_cell.rst +++ b/doc/cable_cell.rst @@ -163,13 +163,13 @@ Take for example a mechanism passive leaky dynamics: m1 = arbor.mechanism('passive') # Create default mechainsm with custom conductance (range) - m2 = arbor.mechanism('passive', {'g', 0.1}) + m2 = arbor.mechanism('passive', {'g': 0.1}) # Create a new pas mechanism with that changes reversal potential (global) m3 = arbor.mechanism('passive/el=-45') # Create an instance of the same mechanism, that also sets conductance (range) - m4 = arbor.mechanism('passive/el=-45', {'g', 0.1}) + m4 = arbor.mechanism('passive/el=-45', {'g': 0.1}) cell.paint('soma', m1) cell.paint('soma', m2) # error: can't place the same mechanism on overlapping regions -- GitLab