Swift 2符号文档标记语法不适用于/ ** * /

时间:2015-10-08 06:54:16

标签: ios xcode swift swift2

我不知道为什么,但是当我编写这段代码文档时,用我的xcode版本(7.0):

/**
Another description

- important: Make sure you read this

- parameter anInt: The number of times to cheer
*/
func commentBlockExample(anInt: Int) {

}

我明白了:

enter image description here

如果我这样写下来:

/// Another description

/// - important: Make sure you read this

/// - parameter anInt: The number of times to cheer
func commentBlockExample(anInt: Int) {

}

我明白了:

enter image description here

知道为什么吗?

0 个答案:

没有答案