Skip to content

Commit

Permalink
Fix docstring (?)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreDecan committed Jul 26, 2019
1 parent 896eea3 commit 2e4ce20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sismic/interpreter/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def attach(self, listener: Callable[[MetaEvent], Any]) -> None:
- *state exited*: when a state is exited. The exited state is exposed through the ``state`` attribute.
- *state entered*: when a state is entered. The entered state is exposed through the ``state`` attribute.
- *transition processed*: when a transition is processed. The source state, target state and the event are
exposed respectively through the ``source``, ``target`` and ``event`` attribute.
exposed respectively through the ``source``, ``target`` and ``event`` attribute.
- Every meta-event that is sent from within the statechart.
This is a low-level interface for ``self.bind`` and ``self.bind_property_statechart``.
Expand Down Expand Up @@ -205,7 +205,7 @@ def bind_property_statechart(self, statechart: Statechart, *, interpreter_klass:
:param statechart: A statechart instance.
:param interpreter_klass: An optional callable that accepts a statechart as first parameter and a
named parameter clock. Default to Interpreter.
named parameter clock. Default to Interpreter.
:return: the resulting attached listener.
"""
if isinstance(statechart, Interpreter):
Expand Down

0 comments on commit 2e4ce20

Please sign in to comment.