From 0054fff840dfda50a32c653774e91b3e19464675 Mon Sep 17 00:00:00 2001 From: Gabriel M Schuyler Date: Sun, 7 Feb 2021 12:35:47 -0600 Subject: [PATCH] docs/pyboard: Fix typo in pyb.Switch tutorial. --- docs/pyboard/tutorial/switch.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.