统一标准

This commit is contained in:
wuxing
2014-06-14 16:43:18 +08:00
parent 7011436cef
commit 1c10a65bd3
128 changed files with 82 additions and 82 deletions

2
source/chapter2/06_Functions.md Normal file → Executable file
View File

@ -471,7 +471,7 @@ println("Result: \(mathFunction(2, 3))")
// prints "Result: 6"
```
就像其他类型一样,当赋值一个函数给常量或变量时,你可以让 Swift 来推其函数类型:
就像其他类型一样,当赋值一个函数给常量或变量时,你可以让 Swift 来推其函数类型:
```swift
let anotherMathFunction = addTwoInts