<!-- Hi there! Whether you've come to make a suggestion for a new lint, an improvement to an existing lint or to report a bug or a false positive in Clippy, you've come to the right place. For bug reports and false positives, please include the output of `cargo clippy -V` in the report. Thank you for using Clippy! Write your comment below this line: --> ``` $ cargo clippy -V clippy 0.0.212 (329923ed 2020-03-04) ``` When using Markdown to link to methods within the generated documentation, this lint triggers erroneously. For instance: ```rust /// Call [`new`][Foo::new] to instantiate this struct. struct Foo { } ``` In this made-up example, the *target* of the link is `Foo::new` per [intra-rustdoc links](https://github.com/rust-lang/rfcs/pull/1946). Adding backticks around it would break the intra-doc linking.