From 2d05380f783b25da2088df95714c9bd93a9b5f44 Mon Sep 17 00:00:00 2001 From: chenxi Date: Wed, 1 Sep 2021 22:39:57 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=E6=9B=B4=E6=96=B0=20GRAMMAR=20OF?= =?UTF-8?q?=20A=20FUNCTION=20DECLARATION?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/03_language_reference/06_Declarations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/03_language_reference/06_Declarations.md b/source/03_language_reference/06_Declarations.md index 4f6482b7..299f0f94 100755 --- a/source/03_language_reference/06_Declarations.md +++ b/source/03_language_reference/06_Declarations.md @@ -660,9 +660,9 @@ Swift 定义了 `Never` 类型,它表示函数或者方法不会返回给它 #### function-signature {#function-signature} > > -> *函数签名* → [参数子句列表](#parameter-clauses) **throws**可选 [函数结果](#function-result)可选 +> *函数签名* → [参数子句列表](#parameter-clauses) **async**可选 **throws**可选 [函数结果](#function-result)可选 > -> *函数签名* → [参数子句列表](#parameter-clauses) **rethrows** [函数结果](#function-result)可选 +> *函数签名* → [参数子句列表](#parameter-clauses) **async**可选 **rethrows** [函数结果](#function-result)可选 > > #### function-result {#function-result}