summaryrefslogtreecommitdiffstatshomepage
path: root/docs/pyboard/tutorial
diff options
context:
space:
mode:
authorGabriel M Schuyler <gms@causalloop.com>2021-02-07 12:35:47 -0600
committerDamien George <damien@micropython.org>2021-05-04 23:05:35 +1000
commit0054fff840dfda50a32c653774e91b3e19464675 (patch)
tree2f6d961ec843ce6b73f4771222ea9a3d484fe647 /docs/pyboard/tutorial
parent31ac410a4fbf18b38b6f4557045959140026680e (diff)
downloadmicropython-0054fff840dfda50a32c653774e91b3e19464675.tar.gz
micropython-0054fff840dfda50a32c653774e91b3e19464675.zip
docs/pyboard: Fix typo in pyb.Switch tutorial.
Diffstat (limited to 'docs/pyboard/tutorial')
-rw-r--r--docs/pyboard/tutorial/switch.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/pyboard/tutorial/switch.rst b/docs/pyboard/tutorial/switch.rst
index 96bb3784e9..059b04d94a 100644
--- a/docs/pyboard/tutorial/switch.rst
+++ b/docs/pyboard/tutorial/switch.rst
@@ -93,7 +93,7 @@ on the pin for any changes, and the following will occur:
running Python script.
3. The microcontroller starts executing the special interrupt handler
associated with the switch's external trigger. This interrupt handler
- get the function that you registered with ``sw.callback()`` and executes
+ gets the function that you registered with ``sw.callback()`` and executes
it.
4. Your callback function is executed until it finishes, returning control
to the switch interrupt handler.