Skip to content

Commit

Permalink
Colon spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Iron-Ham committed Jan 30, 2024
1 parent 99e3ab6 commit dfbb5cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public class AsyncGraphQLQueryPager<Model>: Publisher {

public func receive<S>(
subscriber: S
) where S : Subscriber, Never == S.Failure, Result<(Model, UpdateSource), Error> == S.Input {
) where S: Subscriber, Never == S.Failure, Result<(Model, UpdateSource), Error> == S.Input {
let subscription = PagerSubscription(pager: self, subscriber: subscriber)
subscriber.receive(subscription: subscription)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public class GraphQLQueryPager<Model>: Publisher {

public func receive<S>(
subscriber: S
) where S : Subscriber, Never == S.Failure, Result<(Model, UpdateSource), Error> == S.Input {
) where S: Subscriber, Never == S.Failure, Result<(Model, UpdateSource), Error> == S.Input {
let subscription = PagerSubscription(pager: self, subscriber: subscriber)
subscriber.receive(subscription: subscription)
}
Expand Down

0 comments on commit dfbb5cf

Please sign in to comment.