代码编写错误修正

文章正文和代码弄混了,特此修正。
This commit is contained in:
TheLittleBoy
2014-06-29 21:14:19 +08:00
parent ce63ac6968
commit 99321c85ed

View File

@ -73,9 +73,11 @@ protocol SomeProtocol {
protocol AnotherProtocol { protocol AnotherProtocol {
class var someTypeProperty: Int { get set } class var someTypeProperty: Int { get set }
} }
```
如下所示,这是一个含有一个实例属性要求的协议: 如下所示,这是一个含有一个实例属性要求的协议:
```swift
protocol FullyNamed { protocol FullyNamed {
var fullName: String { get } var fullName: String { get }
} }
@ -135,7 +137,7 @@ protocol SomeProtocol {
如下所示,定义了含有一个实例方法的的协议。 如下所示,定义了含有一个实例方法的的协议。
``` ```swift
protocol RandomNumberGenerator { protocol RandomNumberGenerator {
func random() -> Double func random() -> Double
} }