From aad4282246d6de566fe931eddf56490da3a9a5b2 Mon Sep 17 00:00:00 2001 From: floydzhang1984 Date: Tue, 3 Nov 2015 17:41:52 +0800 Subject: [PATCH] =?UTF-8?q?epub=E7=94=B5=E5=AD=90=E4=B9=A6=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/chapter3/05_Declarations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/chapter3/05_Declarations.md b/source/chapter3/05_Declarations.md index 81ba0d4c..cf59e2c6 100755 --- a/source/chapter3/05_Declarations.md +++ b/source/chapter3/05_Declarations.md @@ -531,7 +531,7 @@ let evenInts: [Number] = [0, 2, 4, 6].map(f) 为间接使用特殊的枚举用例,使用`indirect`声明修饰符标记。 -> enum Tree { +> enum Tree<T$gt; { > case Empty > indirect case Node(value: T, left: Tree, right:Tree) > }