Skip to content

Commit 693e90c

Browse files
authored
Documentation: Just some easy typo corrections (#321)
* Documentation: Just some easy typo corrections
1 parent c85bdf8 commit 693e90c

38 files changed

Lines changed: 427 additions & 428 deletions

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Ready to contribute? Here's how to set up ``python-statemachine`` for local deve
103103

104104
poetry run sphinx-autobuild docs docs/_build/html --re-ignore "auto_examples/.*"
105105

106-
Sometimes you need a full fresh of the files being build for docs, you can safelly remove
106+
Sometimes you need a full fresh of the files being build for docs, you can safely remove
107107
all automatically generated files to get a clean state by running::
108108

109109
rm -rf docs/_build/ docs/auto_examples

docs/actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ You can also declare an event while also adding a callback:
258258
```
259259

260260
Note that with this syntax, the result `loop` that is present on the `ExampleStateMachine.loop`
261-
namespacte is not a simple method, but an {ref}`event` trigger. So it only executes if the
261+
namespace is not a simple method, but an {ref}`event` trigger. So it only executes if the
262262
StateMachine is on the right state.
263263

264264
So, you can use the event-oriented approach:
@@ -361,7 +361,7 @@ For your convenience, all these parameters are available for you on any Action o
361361
: The {ref}`Transition` instance that was activated by the {ref}`Event`.
362362

363363

364-
So, you can implement Actions and Guards like these, but this list is not exaustive, it's only
364+
So, you can implement Actions and Guards like these, but this list is not exhaustive, it's only
365365
to give you a few examples... any combination of parameters will work, including extra parameters
366366
that you may inform when triggering an {ref}`event`:
367367

docs/auto_examples/all_actions_machine.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"cell_type": "markdown",
1616
"metadata": {},
1717
"source": [
18-
"\n# All actions machine\n\nA StateMachine that exercices all possible `Actions` and `Guards`.\n"
18+
"\n# All actions machine\n\nA StateMachine that exercises all possible `Actions` and `Guards`.\n"
1919
]
2020
},
2121
{
@@ -100,7 +100,7 @@
100100
"name": "python",
101101
"nbconvert_exporter": "python",
102102
"pygments_lexer": "ipython3",
103-
"version": "3.11.1"
103+
"version": "3.9.2"
104104
}
105105
},
106106
"nbformat": 4,

docs/auto_examples/all_actions_machine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
All actions machine
33
===================
44
5-
A StateMachine that exercices all possible :ref:`Actions` and :ref:`Guards`.
5+
A StateMachine that exercises all possible :ref:`Actions` and :ref:`Guards`.
66
77
"""
88
from unittest import mock
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
367d00862fc4336899e7dfdbd0d7a80e
1+
49395fa2739081187578086fae0dfbdd

docs/auto_examples/all_actions_machine.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
All actions machine
2222
===================
2323

24-
A StateMachine that exercices all possible :ref:`Actions` and :ref:`Guards`.
24+
A StateMachine that exercises all possible :ref:`Actions` and :ref:`Guards`.
2525

2626
.. GENERATED FROM PYTHON SOURCE LINES 8-143
2727

docs/auto_examples/guess_the_number_machine.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
"name": "python",
153153
"nbconvert_exporter": "python",
154154
"pygments_lexer": "ipython3",
155-
"version": "3.11.1"
155+
"version": "3.9.2"
156156
}
157157
},
158158
"nbformat": 4,
Lines changed: 22 additions & 22 deletions
Loading

0 commit comments

Comments
 (0)