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
{{ message }}
This repository was archived by the owner on Jun 1, 2023. It is now read-only.
It seems that SwiftDoc only generates documentation for public types but I have noticed that some non-public members are sometimes still generated:
internal nested type has an entry on the public parent type's page but the destination is a 404
internal properties on public types
internal initializers on public types
publicstructMyStruct:Encodable{enumCodingKeys:String,CodingKey{ // [1]
case value ="Value"}letvalue:String // [2]
init(value:String){ // [3]
self.value = value
}}