From d3e873f2b499e370a9e2bf480370721d1bcbfff6 Mon Sep 17 00:00:00 2001 From: Realank-Mac Date: Thu, 14 Jan 2016 20:38:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=97=85=E5=8F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/chapter2/05_Control_Flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/chapter2/05_Control_Flow.md b/source/chapter2/05_Control_Flow.md index b056ce89..e6658d3d 100755 --- a/source/chapter2/05_Control_Flow.md +++ b/source/chapter2/05_Control_Flow.md @@ -30,7 +30,7 @@ Swift 的`switch`语句比 C 语言中更加强大。在 C 语言中,如果某 ## For 循环 -Swift 提供两种`for`循环形式以来按照指定的次数多次执行一系列语句: +Swift 提供两种`for`循环形式来按照指定的次数执行一系列语句: * `for-in`循环对一个集合里面的每个元素执行一系列语句。 * for 循环,用来重复执行一系列语句直到达成特定条件达成,一般通过在每次循环完成后增加计数器的值来实现。