修正错误

叹号后面应该有空格的
This commit is contained in:
Realank
2016-01-14 17:19:10 +08:00
parent 64d9b13501
commit 908b206f33

View File

@ -353,7 +353,7 @@ greeting.endIndex.successor() // error
for index in greeting.characters.indices {
print("\(greeting[index]) ", terminator: "")
}
// 打印输出 "G u t e n T a g !"
// 打印输出 "G u t e n T a g ! "
```
<a name="inserting_and_removing"></a>