1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-13 18:24:39 +02:00

Merge pull request #2100 from pbrewczynski/patch-8

[Swift/en] Deleted semicolon to be consistent - Small Fix
This commit is contained in:
ven
2016-01-18 10:07:00 +01:00

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
} }
} }