From 9ab6f2670fae5e4e72e7dc828b983b99082b7c78 Mon Sep 17 00:00:00 2001 From: Hanlei Qin Date: Thu, 22 Oct 2015 11:11:58 +0800 Subject: [PATCH] Update 02_a_swift_tour.md typo fixed. --- source/chapter1/02_a_swift_tour.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/chapter1/02_a_swift_tour.md b/source/chapter1/02_a_swift_tour.md index dcfb2232..823358e2 100755 --- a/source/chapter1/02_a_swift_tour.md +++ b/source/chapter1/02_a_swift_tour.md @@ -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") ``` > 练习: