@@ -15,16 +15,16 @@ High level approach:
1515
1616All issues on Clippy are mentored, if you want help with a bug just ask @Manishearth , @llogiq , @mcarton or @oli-obk .
1717
18- Some issues are easier than others. The [ E-easy] ( https://github.com/Manishearth /rust-clippy/labels/E-easy )
18+ Some issues are easier than others. The [ E-easy] ( https://github.com/rust-lang-nursery /rust-clippy/labels/E-easy )
1919label can be used to find the easy issues. If you want to work on an issue, please leave a comment
2020so that we can assign it to you!
2121
22- Issues marked [ T-AST] ( https://github.com/Manishearth /rust-clippy/labels/T-AST ) involve simple
22+ Issues marked [ T-AST] ( https://github.com/rust-lang-nursery /rust-clippy/labels/T-AST ) involve simple
2323matching of the syntax tree structure, and are generally easier than
24- [ T-middle] ( https://github.com/Manishearth /rust-clippy/labels/T-middle ) issues, which involve types
24+ [ T-middle] ( https://github.com/rust-lang-nursery /rust-clippy/labels/T-middle ) issues, which involve types
2525and resolved paths.
2626
27- Issues marked [ E-medium] ( https://github.com/Manishearth /rust-clippy/labels/E-medium ) are generally
27+ Issues marked [ E-medium] ( https://github.com/rust-lang-nursery /rust-clippy/labels/E-medium ) are generally
2828pretty easy too, though it's recommended you work on an E-easy issue first. They are mostly classified
2929as ` E-medium ` , since they might be somewhat involved code wise, but not difficult per-se.
3030
@@ -38,7 +38,7 @@ how this syntax structure is encoded in the AST, it is recommended to run `rustc
3838example of the structure and compare with the
3939[ nodes in the AST docs] ( http://manishearth.github.io/rust-internals-docs/syntax/ast/ ) . Usually
4040the lint will end up to be a nested series of matches and ifs,
41- [ like so] ( https://github.com/Manishearth /rust-clippy/blob/de5ccdfab68a5e37689f3c950ed1532ba9d652a0/src/misc.rs#L34 ) .
41+ [ like so] ( https://github.com/rust-lang-nursery /rust-clippy/blob/de5ccdfab68a5e37689f3c950ed1532ba9d652a0/src/misc.rs#L34 ) .
4242
4343T-middle issues can be more involved and require verifying types. The
4444[ ` ty ` ] ( http://manishearth.github.io/rust-internals-docs/rustc/ty ) module contains a
0 commit comments