From e79dd77b7a16a813302e900d756df84f68a31c59 Mon Sep 17 00:00:00 2001 From: datdenkikniet Date: Tue, 23 May 2023 20:14:19 +0200 Subject: [PATCH] Fix this anchor --- rtic/examples/async-timeout.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtic/examples/async-timeout.rs b/rtic/examples/async-timeout.rs index 2352cae5a6..24f86dc618 100644 --- a/rtic/examples/async-timeout.rs +++ b/rtic/examples/async-timeout.rs @@ -61,7 +61,7 @@ mod app { } // ANCHOR_END: timeout_after_basic - // ANCHOR: timeout_at + // ANCHOR: timeout_at_basic // get the current time instance let mut instant = Systick::now(); @@ -80,7 +80,7 @@ mod app { _ => hprintln!("timeout"), } } - // ANCHOR_END: timeout_at + // ANCHOR_END: timeout_at_basic debug::exit(debug::EXIT_SUCCESS); }