fix none text anchor

This commit is contained in:
Jie Liang
2019-03-27 00:33:34 -05:00
parent 964478ed72
commit 3acdfbca8c
7 changed files with 218 additions and 218 deletions

View File

@ -10,7 +10,7 @@ Swift 中的模式分为两类:一种能成功匹配任何类型的值,另
> 模式语法
>
###### {#pattern}
###### pattern {#pattern}
> *模式* → [*通配符模式*](#wildcard_pattern) [*类型标注*](03_Types.md#type-annotation)<sub>可选</sub>
>
> *模式* → [*标识符模式*](#identifier_pattern) [*类型标注*](03_Types.md#type-annotation)<sub>可选</sub>
@ -40,7 +40,7 @@ for _ in 1...3 {
> 通配符模式语法
>
###### {#wildcard-pattern}
###### wildcard-pattern {#wildcard-pattern}
> *通配符模式* → **_**
>
@ -57,7 +57,7 @@ let someValue = 42
> 标识符模式语法
>
###### {#identifier-pattern}
###### identifier-pattern {#identifier-pattern}
> *标识符模式* → [*标识符*](./02_Lexical_Structure.md#identifier)
>
@ -80,7 +80,7 @@ case let (x, y):
> 值绑定模式语法
>
###### {#value-binding-pattern}
###### value-binding-pattern {#value-binding-pattern}
> *值绑定模式* → **var** [*模式*](#pattern) | **let** [*模式*](#pattern)
>
@ -109,13 +109,13 @@ let (a): Int = 2 // a: Int = 2
> 元组模式语法
>
###### {#tuple-pattern}
###### tuple-pattern {#tuple-pattern}
> *元组模式* → **(** [*元组模式元素列表*](#tuple-pattern-element-list)<sub>可选</sub> **)**
>
###### {#tuple-pattern-element-list}
###### tuple-pattern-element-list {#tuple-pattern-element-list}
> *元组模式元素列表* → [*元组模式元素*](#tuple-pattern-element) | [*元组模式元素*](#tuple-pattern-element) **,** [*元组模式元素列表*](#tuple-pattern-element-list)
>
###### {#tuple-pattern-element}
###### tuple-pattern-element {#tuple-pattern-element}
> *元组模式元素* → [*模式*](#pattern)
>
@ -126,7 +126,7 @@ let (a): Int = 2 // a: Int = 2
> 枚举用例模式语法
>
###### {#enum-case-pattern}
###### enum-case-pattern {#enum-case-pattern}
> *枚举用例模式* → [*类型标识*](./03_Types.md#type-identifier)<sub>可选</sub> **.** [*枚举用例名*](./06_Declarations.md#enum-case-name) [*元组模式*](#tuple-pattern)<sub>可选</sub>
>
@ -163,7 +163,7 @@ for case let number? in arrayOfOptinalInts {
> 可选模式语法
>
###### {#optional-pattern}
###### optional-pattern {#optional-pattern}
> *可选模式* → [*标识符模式*](./03_Types.md#type-identifier) **?**
>
@ -183,13 +183,13 @@ for case let number? in arrayOfOptinalInts {
> 类型转换模式语法
>
###### {#type-casting-pattern}
###### type-casting-pattern {#type-casting-pattern}
> *类型转换模式* → [*is 模式*](#is-pattern) | [*as 模式*](#as-pattern)
>
###### {#is-pattern}
###### is-pattern {#is-pattern}
> *is 模式* → **is** [*类型*](./03_Types.md#type)
>
###### {#as-pattern}
###### as-pattern {#as-pattern}
> *as 模式* → [*模式*](#pattern) **as** [*类型*](03_Types.md#type)
>
@ -231,6 +231,6 @@ default:
> 表达式模式语法
>
###### {#expression-pattern}
###### expression-pattern {#expression-pattern}
> *表达式模式* → [*表达式*](./04_Expressions.md#expression)
>