diff --git a/source/chapter2/06_Functions.md b/source/chapter2/06_Functions.md index 38e165af..492f5858 100755 --- a/source/chapter2/06_Functions.md +++ b/source/chapter2/06_Functions.md @@ -255,7 +255,7 @@ someFunction(firstParameterName: 1, secondParameterName: 2) ### 指定参数标签 -你可以在函数名称前指定它的参数标签,中间以空格分隔: +你可以在参数名称前指定它的参数标签,中间以空格分隔: ```swift func someFunction(argumentLabel parameterName: Int) {