update Swift 5.1

This commit is contained in:
Nemocdz
2019-11-04 12:30:07 +08:00
parent f7b9eb5e1e
commit e5e81b81d1
2 changed files with 11 additions and 2 deletions

View File

@ -22,6 +22,8 @@
>
> *换行符* → U+000D 后面是 U+000A
>
>
>
> *注释* → **//** [单行内容注释](./02_Lexical_Structure.md#comment-text) [换行符](./02-Lexical-Structure.md#line-break)
>
> *注释* → **/\*** [多行内容注释](./02_Lexical_Structure.md#multiline-comment-text) **\*/**
@ -53,6 +55,8 @@
>
> *标识符* → [隐式参数名](./02_Lexical_Structure.md#implicit-parameter-name)
>
> *标识符* → [属性包装器呈现值](./02_Lexical_Structure.md#property-wrapper-projection)
>
> *标识符集* → [标识符](./02_Lexical_Structure.md#identifier) | [标识符](./02-Lexical-Structure.md#identifier) **,** [标识符集](./02-Lexical-Structure.md#identifier-list)
>
> *标识符头Head* → 大写或者小写字母 A 到 Z
@ -97,6 +101,8 @@
>
> *隐式参数名* → **$** [十进制数字集](./02_Lexical_Structure.md#decimal-digits)
>
> *属性包装器呈现值* → **$** [标识符字符集](./02-Lexical-Structure.md#identifier-characters)
>
<!-- -->
@ -1660,6 +1666,9 @@
>
> *同类型约束* → [类型标识](./03_Types.md#type-identifier) **==** [类型](./03-Types.md#type-identifier)
>
<!-- -->
> 泛型实参子句语法
>
> *泛型实参子句* → **<** [泛型实参集](./09_Generic_Parameters_and_Arguments.md#generic-argument-list) **>**