File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 114
114
115
115
// If no target specified, print error message.
116
116
#[ cfg( not( any( feature = "stm32f100" , feature = "stm32f101" , feature = "stm32f103" ) ) ) ]
117
- compile_error ! ( "Target not found. A `--feature <target-name>` is required." ) ;
117
+ compile_error ! ( "Target not found. A `--features <target-name>` is required." ) ;
118
118
119
119
// If any two or more targets are specified, print error message.
120
120
#[ cfg( any(
121
121
all( feature = "stm32f100" , feature = "stm32f101" ) ,
122
122
all( feature = "stm32f100" , feature = "stm32f103" ) ,
123
123
all( feature = "stm32f101" , feature = "stm32f103" ) ,
124
124
) ) ]
125
- compile_error ! ( "Multiple targets specified. Only a single `--feature <target-name>` can be specified." ) ;
125
+ compile_error ! ( "Multiple targets specified. Only a single `--features <target-name>` can be specified." ) ;
126
126
127
127
#[ cfg( feature = "device-selected" ) ]
128
128
use embedded_hal as hal;
You can’t perform that action at this time.
0 commit comments