mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 12:12:50 +01:00
book: Fix nightly feature attr
This commit is contained in:
parent
9daae8968f
commit
bcdbeebb96
1 changed files with 1 additions and 1 deletions
|
@ -2,4 +2,4 @@
|
|||
|
||||
The new `async` features require that you use a nightly compiler, and that the feature `type_alias_impl_trait` is enabled for your applications.
|
||||
|
||||
To enable this feature, you must add the line `#![type_alias_impl_trait]` to the root file of your project, on the lines below or above where `#![no_std]` and `#![no_main]` are defined.
|
||||
To enable this feature, you must add the line `#![feature(type_alias_impl_trait)]` to the root file of your project, on the lines below or above where `#![no_std]` and `#![no_main]` are defined.
|
||||
|
|
Loading…
Reference in a new issue