Skip to content

Commit fafa74c

Browse files
committed
Fix ValueObservation.publisher documentation
1 parent 62450b5 commit fafa74c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Documentation/Combine.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ This publisher has the same behavior as ValueObservation:
227227
- It notifies an initial value before the eventual changes.
228228
- It may coalesce subsequent changes into a single notification.
229229
- It may notify consecutive identical values. You can filter out the undesired duplicates with the `removeDuplicates()` Combine operator, but we suggest you have a look at the [removeDuplicates()](../README.md#valueobservationremoveduplicates) GRDB operator also.
230-
- It stops emitting any value after the database connection is closed. But it never completes.
230+
- It only completes when it is cancelled.
231231
- By default, it notifies the initial value, as well as eventual changes and errors, on the main thread, asynchronously.
232232

233233
This can be configured with the `scheduling` argument. It does not accept a Combine scheduler, but a [ValueObservation scheduler](../README.md#valueobservation-scheduling).

0 commit comments

Comments
 (0)