From 81498f10bad08df1599ff31fa4699c0ace3576ba Mon Sep 17 00:00:00 2001 From: Sebastian Schmitt <sebastian.schmitt@kip.uni-heidelberg.de> Date: Wed, 26 May 2021 16:37:02 +0200 Subject: [PATCH] Minor fixes to Python's `decor` documentation (#1545) --- doc/python/decor.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/doc/python/decor.rst b/doc/python/decor.rst index 7a7ca937..2f19b999 100644 --- a/doc/python/decor.rst +++ b/doc/python/decor.rst @@ -24,7 +24,6 @@ Cable cell decoration Overrides the default global values, and can be overridden by painting the values onto regions. - :param str region: description of the region. :param Vm: Initial membrane voltage [mV]. :type Vm: float or None :param cm: Membrane capacitance [F/m²]. @@ -46,7 +45,7 @@ Cable cell decoration by default everywhere on the cell. Species concentrations and reversal potential can be overridden on specific regions using the paint interface, while the method for calculating reversal potential is global for all - CVs in the cell, and can't be overriden locally. + CVs in the cell, and can't be overridden locally. :param str ion: description of the ion species. :param float int_con: initial internal concentration [mM]. @@ -67,7 +66,7 @@ Cable cell decoration # The reversal potential is fixed, so we set the method to None. decor.set_ion('na', int_con=5.0, rev_pot=70, method=None) - Verious specialisations of the ``paint`` method are available for setting properties + Various specialisations of the ``paint`` method are available for setting properties and mechanisms that are applied to regions. .. method:: paint(region, Vm=None, cm=None, rL=None, tempK=None) -- GitLab