swift-doc icon indicating copy to clipboard operation
swift-doc copied to clipboard

Link between nested type siblings

Open slashmo opened this issue 4 years ago • 0 comments

Given the following types:

enum Namespace {
  struct A {
    /// - Returns: A `B`.
    func b() -> B { B() }
  }
  struct B {
     /// - Returns: An `A`.
     func a() -> A { A() }
  }
}

It would be great if the generated HTML included links between the two nested types.

slashmo avatar Mar 29 '21 09:03 slashmo