Skip to content

Commit

Permalink
Doc
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianvarela committed Dec 1, 2023
1 parent 9300e78 commit d813feb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Publishers/Publishers.RemoveExpired.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ public extension Publisher {
}

public extension Publishers {
/// Create a `Publisher` that connect an Upstream (Another publisher) that type erases `Task`s to `EmptyTask`
/// The Output of this `Publisher` always is a combined `EmptyTask`
/// Create a `Publisher` that connect an Upstream (Another publisher) that filter any expired task received
/// The Output of this `Publisher` is the same of the Upstream.
struct RemoveExpired<Upstream: Publisher>: Publisher where Upstream.Output: Taskable {
public typealias Output = Upstream.Output
public typealias Failure = Upstream.Failure
Expand Down

0 comments on commit d813feb

Please sign in to comment.