移除行末空格 (#782)

This commit is contained in:
BqLin
2018-05-06 19:13:01 +08:00
committed by 安正超
parent a3f0cae500
commit 08a76e561f
29 changed files with 1030 additions and 1030 deletions

View File

@ -13,7 +13,7 @@
> 校对:[shanks](http://codebuild.me)[overtrue](https://github.com/overtrue)
> 2.2
> 校对:[SketchK](https://github.com/SketchK)
> 校对:[SketchK](https://github.com/SketchK)
> 3.0
> 校对:[CMB](https://github.com/chenmingbiao)版本时间2016-09-13
@ -676,7 +676,7 @@ if let firstNumber = Int("4"), let secondNumber = Int("42"), firstNumber < secon
print("\(firstNumber) < \(secondNumber) < 100")
}
// 输出 "4 < 42 < 100"
if let firstNumber = Int("4") {
if let secondNumber = Int("42") {
if firstNumber < secondNumber && secondNumber < 100 {
@ -774,7 +774,7 @@ do {
func makeASandwich() throws {
// ...
}
do {
try makeASandwich()
eatASandwich()