This repository was archived by the owner on Jun 1, 2023. It is now read-only.
This repository was archived by the owner on Jun 1, 2023. It is now read-only.
SwiftDoc only generates documentation for some non-public members #136
Closed
Description
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 thepublic
parent type's page but the destination is a 404internal
properties onpublic
typesinternal
initializers onpublic
types
public struct MyStruct: Encodable {
enum CodingKeys: String, CodingKey { // [1]
case value = "Value"
}
let value: String // [2]
init(value: String) { // [3]
self.value = value
}
}