aboutsummaryrefslogtreecommitdiff
path: root/examples/not-sync.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/not-sync.rs')
-rw-r--r--examples/not-sync.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/not-sync.rs b/examples/not-sync.rs
index 28a48f23..5d868dfb 100644
--- a/examples/not-sync.rs
+++ b/examples/not-sync.rs
@@ -62,6 +62,6 @@ mod app {
#[task(shared = [&shared])]
async fn bar(c: bar::Context) {
let shared: &NotSync = c.shared.shared;
- hprintln!("foo a {}", shared.data);
+ hprintln!("bar a {}", shared.data);
}
}