Instead: ```swift func method( completion: @escaping (Int) -> Void ) { } ``` Write: ```swift func method( completion: @escaping (_ parameterName: Int) -> Void ) { } ``` Parameter name does not appear on call site.