From b717790d0d7093861a5e4b29fed2c5276959930f Mon Sep 17 00:00:00 2001 From: TheLittleBoy Date: Thu, 31 Dec 2015 16:40:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=A1=E5=AF=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 93c382ca..13a8f1dc 100755 --- a/source/chapter2/06_Functions.md +++ b/source/chapter2/06_Functions.md @@ -437,7 +437,7 @@ func printHelloWorld() { } ``` -这个函数的类型是:`() -> void`,或者叫“没有参数,并返回 `Void` 类型的函数”。 +这个函数的类型是:`() -> Void`,或者叫“没有参数,并返回 `Void` 类型的函数”。 ### 使用函数类型(Using Function Types)