aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/pages/best_practices.adoc2
-rw-r--r--docs/pages/overview.adoc2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/pages/best_practices.adoc b/docs/pages/best_practices.adoc
index bfcedec06..eabaa9eb9 100644
--- a/docs/pages/best_practices.adoc
+++ b/docs/pages/best_practices.adoc
@@ -35,7 +35,7 @@ After the processing, another 1024 byte buffer will be placed on the stack to be
35 35
36Pass the data by reference and not by value on both, the way in and the way out. 36Pass the data by reference and not by value on both, the way in and the way out.
37For example, you could return a slice of the input buffer as the output. 37For example, you could return a slice of the input buffer as the output.
38Requiring the lifetime of the input slice and the output slice to be the same, the memory safetly of this procedure will be enforced by the compiler. 38Requiring the lifetime of the input slice and the output slice to be the same, the memory safety of this procedure will be enforced by the compiler.
39 39
40[,rust] 40[,rust]
41---- 41----
diff --git a/docs/pages/overview.adoc b/docs/pages/overview.adoc
index 6ac0e0b2b..a1bf180cd 100644
--- a/docs/pages/overview.adoc
+++ b/docs/pages/overview.adoc
@@ -74,7 +74,7 @@ include::embassy_in_the_wild.adoc[leveloffset = 2]
74 74
75For more reading material on async Rust and Embassy: 75For more reading material on async Rust and Embassy:
76 76
77* link:https://tweedegolf.nl/en/blog/65/async-rust-vs-rtos-showdown[Comparsion of FreeRTOS and Embassy] 77* link:https://tweedegolf.nl/en/blog/65/async-rust-vs-rtos-showdown[Comparison of FreeRTOS and Embassy]
78* link:https://dev.to/apollolabsbin/series/20707[Tutorials] 78* link:https://dev.to/apollolabsbin/series/20707[Tutorials]
79* link:https://blog.drogue.io/firmware-updates-part-1/[Firmware Updates with Embassy] 79* link:https://blog.drogue.io/firmware-updates-part-1/[Firmware Updates with Embassy]
80 80