diff options
author | Paul Brewczynski <pbbluesm@gmail.com> | 2016-01-16 19:30:25 +0100 |
---|---|---|
committer | Paul Brewczynski <pbbluesm@gmail.com> | 2016-01-16 19:30:25 +0100 |
commit | 107356e627716b75cd79486dbacb1b5d119b4d82 (patch) | |
tree | 68822a06a459f59d228cb508b20561fb1ffad965 /swift.html.markdown | |
parent | 9ecbc9965992a9d9924013d114dcd88e9a3abcc9 (diff) |
[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.
Diffstat (limited to 'swift.html.markdown')
-rw-r--r-- | swift.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swift.html.markdown b/swift.html.markdown index 46996526..46768375 100644 --- a/swift.html.markdown +++ b/swift.html.markdown @@ -392,7 +392,7 @@ testTryStuff() public class Shape { public func getArea() -> Int { - return 0; + return 0 } } |