diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2022-04-20 11:42:36 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-20 11:42:36 +0000 |
| commit | f24e9264b15aefdea269a5a2be3e6678a347e6b4 (patch) | |
| tree | 7db78aa0cea8a4168e05b92c35ffbe00da7b12fc /book/en/src | |
| parent | d1aa20643d39d033d43e4ab919c4a83601388c53 (diff) | |
| parent | a7a8f9f4eddca9476a880de6703390f28be6278b (diff) | |
Merge #626
626: Fix error in book, shared resource need only `Send` r=korken89 a=korken89
Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
Diffstat (limited to 'book/en/src')
| -rw-r--r-- | book/en/src/by-example/resources.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/book/en/src/by-example/resources.md b/book/en/src/by-example/resources.md index 9d51d6c..6349b52 100644 --- a/book/en/src/by-example/resources.md +++ b/book/en/src/by-example/resources.md @@ -105,7 +105,7 @@ $ cargo run --target thumbv7m-none-eabi --example lock {{#include ../../../../ci/expected/lock.run}} ``` -Types of `#[shared]` resources have to be both [`Send`] and [`Sync`]. +Types of `#[shared]` resources have to be [`Send`]. ## Multi-lock |
