Closed
Description
$ 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:
/// 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. Adding backticks around it would break the intra-doc linking.