aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/by-example/tips/destructureing.md
diff options
context:
space:
mode:
Diffstat (limited to 'book/en/src/by-example/tips/destructureing.md')
-rw-r--r--book/en/src/by-example/tips/destructureing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/en/src/by-example/tips/destructureing.md b/book/en/src/by-example/tips/destructureing.md
index 6e1d796..752311d 100644
--- a/book/en/src/by-example/tips/destructureing.md
+++ b/book/en/src/by-example/tips/destructureing.md
@@ -3,7 +3,7 @@
Destructuring task resources might help readability if a task takes multiple
resources. Here are two examples on how to split up the resource struct:
-``` rust
+``` rust,noplayground
{{#include ../../../../../rtic/examples/destructure.rs}}
```