]> git.lizzy.rs Git - rust.git/commitdiff
Add “, add these lines” as well as removing the extra space between the attributes...
authorDarren Tsung <darrentsung@Darrens-MacBook-Pro.local>
Thu, 21 Dec 2017 23:21:28 +0000 (15:21 -0800)
committerDarren Tsung <darrentsung@Darrens-MacBook-Pro.local>
Thu, 21 Dec 2017 23:21:28 +0000 (15:21 -0800)
README.md

index 82f1908bb2372373f097b77931007a71a0a14499..35095ed05aa737147017ac34efd659b76ba9a4f4 100644 (file)
--- a/README.md
+++ b/README.md
@@ -40,11 +40,10 @@ clippy = {version = "*", optional = true}
 default = []
 ```
 
-And, in your `main.rs` or `lib.rs`:
+And, in your `main.rs` or `lib.rs`, add these lines:
 
 ```rust
 #![cfg_attr(feature="clippy", feature(plugin))]
-
 #![cfg_attr(feature="clippy", plugin(clippy))]
 ```