diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2023-05-23 18:26:47 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-23 18:26:47 +0000 |
| commit | 1e4977152a98e6f87cb75c611bdb9217cd59feb2 (patch) | |
| tree | b63b4b908d447581873e4c8dd516faea819a8307 | |
| parent | 2a509580eaad0eed0b5547020f33e5c4e6f985bf (diff) | |
| parent | e79dd77b7a16a813302e900d756df84f68a31c59 (diff) | |
Merge #755
755: Fix this anchor r=korken89 a=datdenkikniet
Co-authored-by: datdenkikniet <jcdra1@gmail.com>
| -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 2352cae..24f86dc 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); } |
