/// This is SomeFunc that serves some function /// - returns: 42 public func SomeFunc() -> Int { return 42; } public struct XWrapper { /// This is x, a property of XWrapper public let x: Int public init(x: Int) { self.x = x } }