diff options
| author | dherrada <dylan.herrada@adafruit.com> | 2020-07-03 13:49:00 -0400 |
|---|---|---|
| committer | dherrada <dylan.herrada@adafruit.com> | 2020-07-03 13:49:00 -0400 |
| commit | 3df03a565069d6e8874eb678d4f010eee97305b0 (patch) | |
| tree | 5a98c58eabc6b7d2654f899c9b7582fbea9daa94 /shared-bindings/microcontroller | |
| parent | 843ff5d30271709186a117877ff0521b769ae8d1 (diff) | |
Made most of the requested changes
Diffstat (limited to 'shared-bindings/microcontroller')
| -rw-r--r-- | shared-bindings/microcontroller/RunMode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shared-bindings/microcontroller/RunMode.c b/shared-bindings/microcontroller/RunMode.c index dce7a5230..f133c34b1 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: microcontroller.RunMode = ... +//| NORMAL: RunMode = ... //| """Run CircuitPython as normal. //| //| :type microcontroller.RunMode:""" //| -//| SAFE_MODE: microcontroller.RunMode = ... +//| SAFE_MODE: 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: microcontroller.RunMode = ... +//| BOOTLOADER: RunMode = ... //| """Run the bootloader. //| //| :type microcontroller.RunMode:""" |
