From 7e9bf1bbc6ad3df006f0639b86c50aad49b46b96 Mon Sep 17 00:00:00 2001 From: Tanks Transfeld Date: Tue, 21 Mar 2023 18:16:38 +0100 Subject: [PATCH] Update embedded-workshop-book/src/enabling-uarte.md Co-authored-by: Jonathan Pallant --- embedded-workshop-book/src/enabling-uarte.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedded-workshop-book/src/enabling-uarte.md b/embedded-workshop-book/src/enabling-uarte.md index de03814..c959fe6 100644 --- a/embedded-workshop-book/src/enabling-uarte.md +++ b/embedded-workshop-book/src/enabling-uarte.md @@ -52,7 +52,7 @@ use dk_pac::UARTE0; ### Step 3: Take ownership of the peripherals with `take()` -Take ownership of the peripherals with `take()`. Take note, the take returns an `Option` so that needs to be taken care of. Bind the `UARTE0` peripheral to it's own variable. +Take ownership of the peripherals with `take()`. Be aware, the take returns an `Option` so that needs to be taken care of. Bind the `UARTE0` peripheral to its own variable. ```rust let periph = dk_pac::Peripherals::take().unwrap();