From 0306b36e52dad6c7217cd0ecaf1badfa74107472 Mon Sep 17 00:00:00 2001 From: Shane Date: Mon, 24 Dec 2018 00:51:15 -0500 Subject: [PATCH] =?UTF-8?q?replace=20with=20=E5=A4=87=E6=B3=A8=20and=20?= =?UTF-8?q?=E7=BB=93=E5=B0=BE=20(#21167)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit it's easier to understand and make sense. --- guide/chinese/swift/comments/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/chinese/swift/comments/index.md b/guide/chinese/swift/comments/index.md index b07c7f99dc..5d9aa62338 100644 --- a/guide/chinese/swift/comments/index.md +++ b/guide/chinese/swift/comments/index.md @@ -4,7 +4,7 @@ localeTitle: 注释 --- ## 注释 -注释允许您记录您的代码。 Swift编译器忽略注释,仅对阅读代码库的人有用。 +注释允许您备注您的代码。 Swift编译器忽略注释,仅对阅读代码库的人有用。 单行注释以两个正斜杠`//`开头。 @@ -14,7 +14,7 @@ localeTitle: 注释 // Hello, single-line comment! ``` -多行注释以正斜杠开头,后跟星号`/*` ,以星号后跟正斜杠`*/` +多行注释以正斜杠开头,后跟星号`/*` ,以星号后跟正斜杠做结尾`*/` #### 例: @@ -25,4 +25,4 @@ localeTitle: 注释 #### 更多信息: -* [Swift编程语言](https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html#ID315) \ No newline at end of file +* [Swift编程语言](https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html#ID315)