summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Shawcroft <scott.shawcroft@gmail.com>2017-12-05 16:04:47 -0800
committerScott Shawcroft <scott.shawcroft@gmail.com>2017-12-05 16:04:47 -0800
commita91e1cb68271ae2acc3d65ece1d781d6077e4138 (patch)
treecf624bed9cbb711377e92fb8130273b6c9fe9340
parentb4d36990479888a0be503383367fbd1bd9b6976b (diff)
Fix a couple spelling errors.
-rw-r--r--atmel-samd/main.c2
-rw-r--r--shared-bindings/microcontroller/RunMode.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/atmel-samd/main.c b/atmel-samd/main.c
index 539ac3cb9..880a0e170 100644
--- a/atmel-samd/main.c
+++ b/atmel-samd/main.c
@@ -535,7 +535,7 @@ safe_mode_t samd21_init(void) {
// On power on start or external reset, set _ezero to the canary word. If it
// gets killed, we boot in safe mode. _ezero is the boundary between statically
// allocated memory including the fixed MicroPython heap and the stack. If
-// either misbehaves, the canary will not be in tact after soft reset.
+// either misbehaves, the canary will not be intact after soft reset.
#ifdef CIRCUITPY_CANARY_WORD
if (PM->RCAUSE.bit.POR == 1 || PM->RCAUSE.bit.EXT == 1) {
_ezero = CIRCUITPY_CANARY_WORD;
diff --git a/shared-bindings/microcontroller/RunMode.c b/shared-bindings/microcontroller/RunMode.c
index b8b66a457..b27a3c090 100644
--- a/shared-bindings/microcontroller/RunMode.c
+++ b/shared-bindings/microcontroller/RunMode.c
@@ -31,7 +31,7 @@
//| :class:`RunMode` -- run state of the microcontroller
//| =============================================================
//|
-//| .. class:: mcirocontroller.RunMode
+//| .. class:: microcontroller.RunMode
//|
//| Enum-like class to define the run mode of the microcontroller and
//| CircuitPython.