Skip to content

Commit a91e1cb

Browse files
committed
Fix a couple spelling errors.
1 parent b4d3699 commit a91e1cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

atmel-samd/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ safe_mode_t samd21_init(void) {
535535
// On power on start or external reset, set _ezero to the canary word. If it
536536
// gets killed, we boot in safe mode. _ezero is the boundary between statically
537537
// allocated memory including the fixed MicroPython heap and the stack. If
538-
// either misbehaves, the canary will not be in tact after soft reset.
538+
// either misbehaves, the canary will not be intact after soft reset.
539539
#ifdef CIRCUITPY_CANARY_WORD
540540
if (PM->RCAUSE.bit.POR == 1 || PM->RCAUSE.bit.EXT == 1) {
541541
_ezero = CIRCUITPY_CANARY_WORD;

shared-bindings/microcontroller/RunMode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
//| :class:`RunMode` -- run state of the microcontroller
3232
//| =============================================================
3333
//|
34-
//| .. class:: mcirocontroller.RunMode
34+
//| .. class:: microcontroller.RunMode
3535
//|
3636
//| Enum-like class to define the run mode of the microcontroller and
3737
//| CircuitPython.

0 commit comments

Comments
 (0)