swift-unidoc
swift-unidoc copied to clipboard
translate documentation links that use the wrong module qualifier
there is a link to apple developer docs in https://swiftinit.org/docs/swift-testing/testing/migratingfromxctest#Converting%20test%20methods that is not being translated properly
the right thing to do is probably to make the doclink resolver use its own logic for resolving symbol documentation instead of delegating to CodelinkResolver
, which isn’t really meant to be used on URLs at all.
swiftpackageindex.com links likely suffer from the same problem.
actually, this seems to have nothing to do with dots at all, the issue is that link is qualified with swift
, when it really should be qualified with _concurrency
related: #278