From cd5bfb55d7f9a693c66c2bb144e78231fe3e0fea Mon Sep 17 00:00:00 2001 From: floydzhang1984 Date: Tue, 3 Nov 2015 18:50:57 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BD=AC=E4=B9=89=E5=AD=97=E7=AC=A6=E4=BF=AE?= =?UTF-8?q?=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 cf59e2c6..1fca522a 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<T$gt; { +> enum Tree<T> { > case Empty > indirect case Node(value: T, left: Tree, right:Tree) > }