校正+翻译 From SketchK

主要内容
1 `访问控制`章节中的`检查类型`一节中代码更新(++号废弃)
2 `高级运算符`章节中的`AnyObjcect`一节中文字更新及错误纠正
This commit is contained in:
Sketchk
2016-05-17 16:31:33 +08:00
parent 728ae92a90
commit 988c3e0368
2 changed files with 10 additions and 21 deletions

View File

@ -11,6 +11,9 @@
> 2.1
> 翻译:[Prayer](https://github.com/futantan)
> 校对:[shanks](http://codebuild.me)2015-11-01
>
> 2.2
> 翻译+校对:[SketchK](https://github.com/SketchK) 2016-05-17
本页内容包括:
@ -276,7 +279,7 @@ struct TrackedString {
private(set) var numberOfEdits = 0
var value: String = "" {
didSet {
numberOfEdits++
numberOfEdits += 1
}
}
}
@ -306,7 +309,7 @@ public struct TrackedString {
public private(set) var numberOfEdits = 0
public var value: String = "" {
didSet {
numberOfEdits++
numberOfEdits += 1
}
}
public init() {}