aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Bachmann <[email protected]>2024-03-18 23:02:46 +0100
committerGitHub <[email protected]>2024-03-18 23:02:46 +0100
commit5221965a1fb33fc2063d1262114cade01fb33caa (patch)
tree1365aef9816eae9c03579fa66930a6ef68fd5990
parent6d9f87356bb523de6a17fc380f23c04ee66b38ce (diff)
Fix minor typos in embassy_rp/src/lib.rs
-rw-r--r--embassy-rp/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-rp/src/lib.rs b/embassy-rp/src/lib.rs
index 46973fdc8..7092b3fab 100644
--- a/embassy-rp/src/lib.rs
+++ b/embassy-rp/src/lib.rs
@@ -238,8 +238,8 @@ select_bootloader! {
238} 238}
239 239
240/// Installs a stack guard for the CORE0 stack in MPU region 0. 240/// Installs a stack guard for the CORE0 stack in MPU region 0.
241/// Will fail if the MPU is already confgigured. This function requires 241/// Will fail if the MPU is already configured. This function requires
242/// a `_stack_end` symbol to be defined by the linker script, and expexcts 242/// a `_stack_end` symbol to be defined by the linker script, and expects
243/// `_stack_end` to be located at the lowest address (largest depth) of 243/// `_stack_end` to be located at the lowest address (largest depth) of
244/// the stack. 244/// the stack.
245/// 245///