From 333e5eb33ac92ba8b85a3348e0fb7c653e312bee Mon Sep 17 00:00:00 2001 From: nswbmw Date: Tue, 22 Sep 2015 12:34:57 +0800 Subject: [PATCH] fix typo --- source-tw/chapter2/11_Methods.md | 2 +- source/chapter2/11_Methods.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source-tw/chapter2/11_Methods.md b/source-tw/chapter2/11_Methods.md index 9e35a555..47c3a802 100644 --- a/source-tw/chapter2/11_Methods.md +++ b/source-tw/chapter2/11_Methods.md @@ -225,7 +225,7 @@ ovenLight.next() ```swift class SomeClass { - class func someTypeMethod() { + static func someTypeMethod() { // type method implementation goes here } } diff --git a/source/chapter2/11_Methods.md b/source/chapter2/11_Methods.md index d933eeeb..ff1db826 100755 --- a/source/chapter2/11_Methods.md +++ b/source/chapter2/11_Methods.md @@ -1,6 +1,6 @@ # 方法(Methods) ------------------ - +----------------- + > 1.0 > 翻译:[pp-prog](https://github.com/pp-prog) > 校对:[zqp](https://github.com/zqp) @@ -222,7 +222,7 @@ ovenLight.next() ```swift class SomeClass { - class func someTypeMethod() { + static func someTypeMethod() { // type method implementation goes here } }