aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/by-example/tips.md
diff options
context:
space:
mode:
authorVincent Esche <regexident@gmail.com>2020-07-14 16:01:14 +0200
committerVincent Esche <regexident@gmail.com>2020-07-14 16:01:14 +0200
commite9fa71c065add03b9aedfb0e848b115370732b3c (patch)
tree3d007bc87f32cb440171042a69ebab35fe6ee490 /book/en/src/by-example/tips.md
parent3b48447934c18264fb9222faa573719079719b4f (diff)
Fixed some more spelling
Diffstat (limited to 'book/en/src/by-example/tips.md')
-rw-r--r--book/en/src/by-example/tips.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/book/en/src/by-example/tips.md b/book/en/src/by-example/tips.md
index ce9bba8..b191b9d 100644
--- a/book/en/src/by-example/tips.md
+++ b/book/en/src/by-example/tips.md
@@ -155,7 +155,7 @@ const APP: () = {
};
```
-Or, you can use the [`cargo-expand`] subcommand. This subcommand will expand
+Or, you can use the [`cargo-expand`] sub-command. This sub-command will expand
*all* the macros, including the `#[rtic::app]` attribute, and modules in your
crate and print the output to the console.
@@ -169,7 +169,7 @@ $ cargo expand --example smallest | tail
## Resource de-structure-ing
When having a task taking multiple resources it can help in readability to split
-up the resource struct. Here're two examples on how this can be done:
+up the resource struct. Here are two examples on how this can be done:
``` rust
{{#include ../../../../examples/destructure.rs}}