From a8ba984b5397bae22d6ad30172a2510014130083 Mon Sep 17 00:00:00 2001 From: Honghao Zhang Date: Fri, 7 Aug 2015 00:34:12 -0400 Subject: [PATCH] Fixed a translation mistake in Functions in External Parameter Names --- 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 6b5030bb..6104efc2 100755 --- a/source/chapter2/06_Functions.md +++ b/source/chapter2/06_Functions.md @@ -250,7 +250,7 @@ someFunction(1, secondParameterName: 2) ### 指定外部参数名(Specifying External Parameter Names) -你可以在本地参数名前指定外部参数名,中间以逗号分隔. +你可以在本地参数名前指定外部参数名,中间以空格分隔. ```swift func someFunction(externalParameterName localParameterName: Int) {