You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Always make sure to implement [`req`], but you don't have to implement [`prov`].////// [`req`]: Foo::req/// [`prov`]: Foo::provpubtraitFoo{/// Requiredfnreq();/// Providedfnprov(){}}
req will link to #tymethod.req, which is exists, but prov will also link to #tymethod.prov, which doesn't exist. The correct link is #method.prov.
req
will link to#tymethod.req
, which is exists, butprov
will also link to#tymethod.prov
, which doesn't exist. The correct link is#method.prov
.Ref #43466
The text was updated successfully, but these errors were encountered: