Skip to content
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
@a2

Description

@a2

It seems that SwiftDoc only generates documentation for public types but I have noticed that some non-public members are sometimes still generated:

  1. internal nested type has an entry on the public parent type's page but the destination is a 404
  2. internal properties on public types
  3. internal initializers on public types
public struct MyStruct: Encodable {
    enum CodingKeys: String, CodingKey { // [1]
        case value = "Value"
    } 

    let value: String // [2]

    init(value: String) { // [3]
        self.value = value
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions