From 5aef50b6a1763c9bff923a0a33d1950b779505cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E6=AD=A3=E8=B6=85?= Date: Wed, 31 May 2017 12:16:02 +0800 Subject: [PATCH] Typo. #701 --- source/chapter2/06_Functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {