In #87078, we arrived at the following situation:
error: incompatible link kind for `Foo::bar`
--> $DIR/field-ice.rs:5:6
|
LL | /// [`Foo::bar()`]
| ^^^^^^^^^^^^ help: to link to the field, remove the disambiguator: ``Foo::bar``
I want to underline this part in particular:
Having two backticks is very weird. What I suggest instead is to reduce the "^^^^^" underlining part in order to not include backticks in it so then they can be removed from the error message as well, which would give:
error: incompatible link kind for `Foo::bar`
--> $DIR/field-ice.rs:5:6
|
LL | /// [`Foo::bar()`]
| ^^^^^^^^^^ help: to link to the field, remove the disambiguator: `Foo::bar`
I'll do it in the next days if no one does until then. :)
cc @jyn514
In #87078, we arrived at the following situation:
I want to underline this part in particular:
Having two backticks is very weird. What I suggest instead is to reduce the "^^^^^" underlining part in order to not include backticks in it so then they can be removed from the error message as well, which would give:
I'll do it in the next days if no one does until then. :)
cc @jyn514