aboutsummaryrefslogtreecommitdiff
path: root/examples/not-sync.rs
diff options
context:
space:
mode:
authorEmil Fresk <emil.fresk@gmail.com>2023-01-08 19:56:47 +0100
committerHenrik Tjäder <henrik@tjaders.com>2023-03-01 00:33:28 +0100
commit35c97b61c17a30de675eb1c7f852a100b200a0c2 (patch)
treea4228d68aeab2f5aa32b26649e5664d20adfa729 /examples/not-sync.rs
parentceaf3613d3256f60b139a4f93220e3c298603b83 (diff)
All examples pass with `cargo xtask --target all`
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 28a48f2..5d868df 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);
}
}