When I have a protocol called AProtocol:
protocol AProtocol {
/**
Foo
*/
func foo()
}
and an imlelemtation of AProtocol:
struct AImpl: AProtocol {
func foo() {
///...
}
}
AImpl.foo gets marked as missing documentation. This should not happen. You should not need to duplicate the documentation
When I have a protocol called AProtocol:
and an imlelemtation of AProtocol:
AImpl.foo gets marked as missing documentation. This should not happen. You should not need to duplicate the documentation