Например, вместо этого:
struct MyStruct {
/// My first comment
let myVar1: Int
/// My second comment
let myVar2: Int
/// My third comment
let myVar3: Int
}
Можно ли написать комментарий к документации, например:
struct MyStruct {
let myVar1: Int //< My first comment
let myVar2: Int //< My second comment
let myVar3: Int //< My third comment
}