young
(rtSwift)
1
/// Description
/// - Parameter name: why Xcode use name instead of label?
func blahblah(label name: Int) { }
Documentation helps caller to understand what the function does, shouldn't it use label instead of name? label is used by the caller, name is used internal to the function.
1 Like
young
(rtSwift)
3
Ah ha, this make sense!
TIL! Although I haven't seen this "in the wild"