Update 02_a_swift_tour.md

typo fixed.
This commit is contained in:
Hanlei Qin
2015-10-22 11:11:58 +08:00
parent 3402441cff
commit 9ab6f2670f

View File

@ -233,7 +233,7 @@ print(secondForLoop)
func greet(name: String, day: String) -> String {
return "Hello \(name), today is \(day)."
}
greet("Bob", "Tuesday")
greet("Bob", day: "Tuesday")
```
> 练习: