summaryrefslogtreecommitdiff
path: root/shared-bindings/microcontroller/RunMode.c
diff options
context:
space:
mode:
authordherrada <dylan.herrada@adafruit.com>2020-07-03 10:33:28 -0400
committerdherrada <dylan.herrada@adafruit.com>2020-07-03 10:33:28 -0400
commit0a8d9eed45422936bfa6df58d79ac2b4a855ca90 (patch)
tree7c3f59b9c60bad875055d72a3a5d478219797829 /shared-bindings/microcontroller/RunMode.c
parent2e8b8c7b954f176988ed6c244db18efa0a696968 (diff)
Added type hints to microcontroller
Diffstat (limited to 'shared-bindings/microcontroller/RunMode.c')
-rw-r--r--shared-bindings/microcontroller/RunMode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared-bindings/microcontroller/RunMode.c b/shared-bindings/microcontroller/RunMode.c
index d4c10109a..dce7a5230 100644
--- a/shared-bindings/microcontroller/RunMode.c
+++ b/shared-bindings/microcontroller/RunMode.c
@@ -33,18 +33,18 @@
//| """Enum-like class to define the run mode of the microcontroller and
//| CircuitPython."""
//|
-//| NORMAL: Any = ...
+//| NORMAL: microcontroller.RunMode = ...
//| """Run CircuitPython as normal.
//|
//| :type microcontroller.RunMode:"""
//|
-//| SAFE_MODE: Any = ...
+//| SAFE_MODE: microcontroller.RunMode = ...
//| """Run CircuitPython in safe mode. User code will not be run and the
//| file system will be writeable over USB.
//|
//| :type microcontroller.RunMode:"""
//|
-//| BOOTLOADER: Any = ...
+//| BOOTLOADER: microcontroller.RunMode = ...
//| """Run the bootloader.
//|
//| :type microcontroller.RunMode:"""