@@ -49,7 +49,7 @@ first read the [Basics docs](doc/basics.md).**
49
49
All issues on Clippy are mentored, if you want help with a bug just ask
50
50
@Manishearth , @flip1995 , @phansch or @yaahc .
51
51
52
- Some issues are easier than others. The [ ` good first issue ` ] label can be used to find the easy issues.
52
+ Some issues are easier than others. The [ ` good- first- issue ` ] label can be used to find the easy issues.
53
53
If you want to work on an issue, please leave a comment so that we can assign it to you!
54
54
55
55
There are also some abandoned PRs, marked with [ ` S-inactive-closed ` ] .
@@ -68,7 +68,7 @@ To figure out how this syntax structure is encoded in the AST, it is recommended
68
68
Usually the lint will end up to be a nested series of matches and ifs, [ like so] [ deep-nesting ] .
69
69
But we can make it nest-less by using [ if_chain] macro, [ like this] [ nest-less ] .
70
70
71
- [ ` E-medium ` ] issues are generally pretty easy too, though it's recommended you work on an [ ` good first issue ` ]
71
+ [ ` E-medium ` ] issues are generally pretty easy too, though it's recommended you work on an [ ` good- first- issue ` ]
72
72
first. Sometimes they are only somewhat involved code wise, but not difficult per-se.
73
73
Note that [ ` E-medium ` ] issues may require some knowledge of Clippy internals or some
74
74
debugging to find the actual problem behind the issue.
@@ -77,7 +77,7 @@ debugging to find the actual problem behind the issue.
77
77
lot of methods that are useful, though one of the most useful would be ` expr_ty ` (gives the type of
78
78
an AST expression). ` match_def_path() ` in Clippy's ` utils ` module can also be useful.
79
79
80
- [ `good first issue` ] : https://github.com/rust-lang/rust-clippy/labels/good%20first%20issue
80
+ [ `good- first- issue` ] : https://github.com/rust-lang/rust-clippy/labels/good-first-issue
81
81
[ `S-inactive-closed` ] : https://github.com/rust-lang/rust-clippy/pulls?q=is%3Aclosed+label%3AS-inactive-closed
82
82
[ `T-AST` ] : https://github.com/rust-lang/rust-clippy/labels/T-AST
83
83
[ `T-middle` ] : https://github.com/rust-lang/rust-clippy/labels/T-middle
0 commit comments