From 03f80b1aa72bf48ebdaff094b17b04c2ea5d4782 Mon Sep 17 00:00:00 2001
From: Per Lindgren <per.lindgren@ltu.se>
Date: Thu, 3 Dec 2020 11:46:13 +0100
Subject: [PATCH] typo fixed

---
 examples/timing_resources.rs | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/examples/timing_resources.rs b/examples/timing_resources.rs
index f4b4862..193d633 100644
--- a/examples/timing_resources.rs
+++ b/examples/timing_resources.rs
@@ -153,8 +153,9 @@ const APP: () = {
 // execution time of the lock.
 //
 // (gdb) c
-// timing_resources::idle (cx=...) at examples/timing_resources.rs:36
-// 36              asm::bkpt();
+//  received signal SIGTRAP, Trace/breakpoint trap.
+// timing_resources::exti1 (cx=...) at examples/timing_resources.rs:47
+// 47	        asm::bkpt();
 //
 // (gdb) x 0xe0001004
 //
@@ -231,7 +232,7 @@ const APP: () = {
 //
 // [Your answer here]
 //
-// This is the total execution time of.
+// This is the total execution time of:
 //
 // - pending a task `exti0` for execution
 // - preempt `exti1`
@@ -246,7 +247,7 @@ const APP: () = {
 //
 // You find a comparison to a typical threaded counterpart `freeRTOS` in Table 1.
 //
-// Give a rough estimate based on this info how long the complete task `uart1`,
+// Give a rough estimate based on this info how long the complete task `exti1`,
 // would take to execute if written in FreeRTOS. (Include the context switch, to higher
 // priority task, the mutex lock/unlock in both "threads".)
 //
@@ -260,6 +261,6 @@ const APP: () = {
 // Why do you think RTIC + Rust + LLVM can do a better job than hand written
 // C code + Macros + gcc?
 //
-// (Hint, what possible optimization can safely be applied.)
+// (Hint, what possible optimization can safely be applied by RTIC + Rust + LLVM.)
 //
 // [Your answer here]
-- 
GitLab