aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/by-example/tips
diff options
context:
space:
mode:
authorOleksandr Babak <alexanderbabak@proton.me>2025-03-27 11:33:09 +0100
committerEmil Fresk <emil.fresk@gmail.com>2025-03-27 14:47:11 +0000
commitcb7d053b788235eeda7cd76a2a0864d384fcd580 (patch)
treebfe779d151865861c2e207f67f86317bed1e13c1 /book/en/src/by-example/tips
parent8127208eb5a8e4a5a62dc4a9cd147945cc6f595d (diff)
fix(ci): adjust filenames for ouputs
Diffstat (limited to 'book/en/src/by-example/tips')
-rw-r--r--book/en/src/by-example/tips/static_lifetimes.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/book/en/src/by-example/tips/static_lifetimes.md b/book/en/src/by-example/tips/static_lifetimes.md
index 6f88bf0..e11a15b 100644
--- a/book/en/src/by-example/tips/static_lifetimes.md
+++ b/book/en/src/by-example/tips/static_lifetimes.md
@@ -9,15 +9,15 @@ In the following example two different tasks share a [`heapless::spsc::Queue`] f
[`heapless::spsc::Queue`]: https://docs.rs/heapless/0.7.5/heapless/spsc/struct.Queue.html
```rust,noplayground
-{{#include ../../../../../examples/lm3s6965/examples/static.rs}}
+{{#include ../../../../../examples/lm3s6965/examples/static-resources-in-init.rs}}
```
Running this program produces the expected output.
```console
-$ cargo xtask qemu --verbose --example static
+$ cargo xtask qemu --verbose --example static-resources-in-init
```
```console
-{{#include ../../../../../ci/expected/lm3s6965/static.run}}
+{{#include ../../../../../ci/expected/lm3s6965/static-resources-in-init.run}}
```