diff options
author | 2023-05-23 20:14:19 +0200 | |
---|---|---|
committer | 2023-05-23 20:14:19 +0200 | |
commit | e79dd77b7a16a813302e900d756df84f68a31c59 (patch) | |
tree | b63b4b908d447581873e4c8dd516faea819a8307 | |
parent | 2a509580eaad0eed0b5547020f33e5c4e6f985bf (diff) | |
download | rtic-e79dd77b7a16a813302e900d756df84f68a31c59.tar.gz rtic-e79dd77b7a16a813302e900d756df84f68a31c59.tar.zst rtic-e79dd77b7a16a813302e900d756df84f68a31c59.zip |
Fix this anchor
-rw-r--r-- | rtic/examples/async-timeout.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rtic/examples/async-timeout.rs b/rtic/examples/async-timeout.rs index 2352cae5..24f86dc6 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); } |