Closed
Description
I tried this code:
/// [`get`]: std::vec::Vec::get
pub fn f() {}
I expected to see this happen: A link to https://doc.rust-lang.org/std/vec/struct.Vec.html#method.get
Instead, this happened: The link wasn't resolved, because get
is a method on slices, not Vec
itself.