diff options
author | Philippe <pvlerick@gmail.com> | 2014-08-31 17:58:38 +0200 |
---|---|---|
committer | Philippe <pvlerick@gmail.com> | 2014-08-31 17:58:38 +0200 |
commit | 20e827f2543605f533d1cc4e6d474d3b1fd7bac9 (patch) | |
tree | a463c5c2820d78835be23612903c526c0610ee3b | |
parent | 2c56f7bed41f7b7e26989374020d68f1f0f9ebe5 (diff) | |
parent | 6f5f6016601f8ba6168622a013b1eaae1a945b24 (diff) |
Merge remote-tracking branch 'upstream/master'
-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 a0ea8519..6d98b067 100644 --- a/swift.html.markdown +++ b/swift.html.markdown @@ -157,7 +157,7 @@ print(numbers) // [3, 6, 18] // structured object, you should use a `struct` // A simple class `Square` extends `Shape` -class Rect: Shape { +class Square: Shape { var sideLength: Int = 1 // Custom getter and setter property |