[Swift/en] Deleted semicolon to be consistent - Small Fix

this line 
let weak = "keyword"; let override = "another keyword" // statements can be separated by a semi-colon
show off semicolon use. But after that semicolon is not used, so I removed inconsistency.
This commit is contained in:
Paul Brewczynski 2016-01-16 19:30:25 +01:00
parent 9ecbc99659
commit 107356e627

View File

@ -392,7 +392,7 @@ testTryStuff()
public class Shape { public class Shape {
public func getArea() -> Int { public func getArea() -> Int {
return 0; return 0
} }
} }