Skip to content

Commit 413f883

Browse files
authored
Fix "'value' is inaccessible due to 'internal' protection level" in SignalProducer playground (#844)
1 parent 0c09507 commit 413f883

File tree

1 file changed

+1
-1
lines changed
  • ReactiveSwift.playground/Pages/SignalProducer.xcplaygroundpage

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ with the Signal, and prevent any future callbacks from being invoked.
135135
scopedExample("`startWithResult`") {
136136
SignalProducer<Int, Never>(value: 42)
137137
.startWithResult { result in
138-
print(result.value)
138+
print(result)
139139
}
140140
}
141141

0 commit comments

Comments
 (0)