fix typos in secop/modules.py doc

Change-Id: Idfbb85603b5efd0884ae9356dd96136c9c32ada1
This commit is contained in:
zolliker 2020-10-28 10:09:17 +01:00
parent cf24bbc3c3
commit ad07ecdd69

View File

@ -309,13 +309,13 @@ class Module(HasProperties, metaclass=ModuleMeta):
- whenever a self.<param> changes:
<modobj>.update_<param> is called with the new value as argument.
If this method raises en exception, <modobj>.<param> gets into an error state.
If this method raises an exception, <modobj>.<param> gets into an error state.
If the method does not exist and <param> is in autoupdate,
<modobj>.<param> is updated to self.<param>
- whenever <self>.<param> gets into an error state:
<modobj>.error_update_<param> is called with the exception as argument.
If this method raises an error, <modobj>.<param> gets into an error state.
If the method does not exist, and <param is in autoupdate,
If this method does not exist, and <param> is in autoupdate,
<modobj>.<param> gets into the same error state as self.<param>
"""
for pname in self.parameters: