diff options
| author | Philipp Krones <hello@philkrones.com> | 2023-08-16 14:54:47 +0200 |
|---|---|---|
| committer | Philipp Krones <hello@philkrones.com> | 2023-08-16 14:54:47 +0200 |
| commit | 1dbc8dd0cf51ddff5a585d128f376d26ee619196 (patch) | |
| tree | 1268f91732829e6ffb45c583af50bddaf9cb43e0 | |
| parent | e8d79b86454ffd7c18ce65c98dda5df51633eedd (diff) | |
| download | rust-1dbc8dd0cf51ddff5a585d128f376d26ee619196.tar.gz rust-1dbc8dd0cf51ddff5a585d128f376d26ee619196.zip | |
Fix define_lints->defining_lints typo in link
| -rw-r--r-- | book/src/development/method_checking.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/book/src/development/method_checking.md b/book/src/development/method_checking.md index f061e6f5b37..56d1be37519 100644 --- a/book/src/development/method_checking.md +++ b/book/src/development/method_checking.md @@ -38,7 +38,7 @@ impl<'tcx> LateLintPass<'tcx> for OurFancyMethodLint { Take a closer look at the `ExprKind` enum variant [`MethodCall`] for more information on the pattern matching. As mentioned in [Define -Lints](define_lints.md#lint-types), the `methods` lint type is full of pattern +Lints](defining_lints.md#lint-types), the `methods` lint type is full of pattern matching with `MethodCall` in case the reader wishes to explore more. Additionally, we use the [`clippy_utils::sym!`][sym] macro to conveniently |
