Hello !
I wanted opinions on documenting code: do you think it is better to do
/// ... some doc ... [`OtherStruct`] ... [`OtherStruct`]
///
/// [`OtherStruct`]: path::to::OtherStruct
pub struct MyStruct;
Or
/// ... some doc ... [`OtherStruct`] ... `OtherStruct`
///
/// [`OtherStruct`]: path::to::OtherStruct
pub struct MyStruct;
In other words, should every occurrence of OtherStruct
be linked, or only the first one ?