mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
fix
This commit is contained in:
parent
5d3f627f47
commit
2b65473ac5
1 changed files with 2 additions and 2 deletions
|
@ -150,9 +150,9 @@ default=[]
|
|||
And, in your `main.rs` or `lib.rs`:
|
||||
|
||||
```rust
|
||||
#![cfg_attr(feature=clippy, feature(plugin))]
|
||||
#![cfg_attr(feature="clippy", feature(plugin))]
|
||||
|
||||
#![cfg_attr(feature=clippy, plugin(clippy))]
|
||||
#![cfg_attr(feature="clippy", plugin(clippy))]
|
||||
```
|
||||
|
||||
##License
|
||||
|
|
Loading…
Reference in a new issue