diff options
author | 2020-10-05 18:26:00 +0000 | |
---|---|---|
committer | 2020-10-05 18:26:00 +0000 | |
commit | 12aa9807c4883e1c8b3f226acea3a6aa5e886989 (patch) | |
tree | 4febd53f9ba370a40e3ee0f3630a3542d1be4964 /macros/src/lib.rs | |
parent | f493f21359ccb3ab4643d9470f3581532f47593a (diff) | |
parent | 8ab7be98714d1ef6298e6feb19f16b84cd9bb4e6 (diff) | |
download | rtic-12aa9807c4883e1c8b3f226acea3a6aa5e886989.tar.gz rtic-12aa9807c4883e1c8b3f226acea3a6aa5e886989.tar.zst rtic-12aa9807c4883e1c8b3f226acea3a6aa5e886989.zip |
Merge #372
372: Now late resources are always used r=AfoHT a=korken89
Awaits the PR in `rtic-syntax`: https://github.com/rtic-rs/rtic-syntax/pull/32
Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
Diffstat (limited to 'macros/src/lib.rs')
-rw-r--r-- | macros/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/macros/src/lib.rs b/macros/src/lib.rs index 94e7eec6..e659559e 100644 --- a/macros/src/lib.rs +++ b/macros/src/lib.rs @@ -35,8 +35,7 @@ mod tests; /// /// The items allowed in the module block are specified below: /// -/// # 1. `#[resources] -/// struct <resource-name>` +/// # 1. `#[resources] struct <resource-name>` /// /// This structure contains the declaration of all the resources used by the application. Each field /// in this structure corresponds to a different resource. Each resource may optionally be given an |