Skip to content

Commit 146aaa9

Browse files
committed
Review changes
1 parent 74e9c4b commit 146aaa9

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

Documentation/FrameworkOverview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,6 @@ all cases, the target has to be a binding target, represented by the [`BindingTa
153153
* `property <~ otherProperty` binds one property to another, so that the destination
154154
property’s value is updated whenever the source property is updated.
155155

156-
[ReactiveCocoa][ReactiveCocoa] implements a number of extensions on AppKit and UIKit to allow observation of and binding to properties via the `.reactive` structure.
157-
158156
Properties provide a number of transformations like `map`, `combineLatest` or `zip` for manipulation similar to [signal](#signals) and [signal producer](#signal-producers)
159157

160158
## Disposables

ReactiveSwift.playground/Pages/Property.xcplaygroundpage/Contents.swift

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -143,23 +143,6 @@ scopedExample("`map`") {
143143
property.value = 2
144144
}
145145

146-
scopedExample("`skipRepeats`") {
147-
let property = MutableProperty(0)
148-
let skipRepeatsProperty = property.skipRepeats()
149-
150-
property.producer.startWithValues {
151-
print("Property received \($0)")
152-
}
153-
skipRepeatsProperty.producer.startWithValues {
154-
print("Skip-Repeats property received \($0)")
155-
}
156-
157-
property.value = 0
158-
property.value = 1
159-
property.value = 1
160-
property.value = 0
161-
}
162-
163146
scopedExample("`skipRepeats`") {
164147
let property = MutableProperty(0)
165148
let skipRepeatsProperty = property.skipRepeats()

0 commit comments

Comments
 (0)