We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e2505b commit e0625f4Copy full SHA for e0625f4
book/src/development/adding_lints.md
@@ -301,8 +301,8 @@ either [`EarlyLintPass`][early_lint_pass] or [`LateLintPass`][late_lint_pass].
301
302
In short, the `EarlyLintPass` runs before type checking and
303
[HIR](https://rustc-dev-guide.rust-lang.org/hir.html) lowering and the `LateLintPass`
304
-has access to type information. Consider using the `LateLintPass` unless you need
305
-something specific from the `EarlyLintPass`.
+has access to type information. Consider using the `EarlyLintPass` unless you need
+something specific from the `LateLintPass`.
306
307
Since we don't need type information for checking the function name, we used
308
`--pass=early` when running the new lint automation and all the imports were
0 commit comments