You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -168,7 +168,7 @@ materialize: completed with .finished
168
168
169
169
### values
170
170
171
-
Given a materialized publisher, publish only the emitted upstream values, omitting failures. Given a `Publisher<Event<String, MyError>, ever>`, this operator will return a `Publisher<Srting, Never>`.
171
+
Given a materialized publisher, publish only the emitted upstream values, omitting failures. Given a `Publisher<Event<String, MyError>, Never>`, this operator will return a `Publisher<Srting, Never>`.
172
172
173
173
**Note**: This operator only works on publishers that were materialized with the `materialize()` operator.
174
174
@@ -201,7 +201,7 @@ values: "What's up?"
201
201
202
202
### failures
203
203
204
-
Given a materialized publisher, publish only the emitted upstream failure, omitting values. Given a `Publisher<Event<String, MyError>, ever>`, this operator will return a `Publisher<MyError, Never>`.
204
+
Given a materialized publisher, publish only the emitted upstream failure, omitting values. Given a `Publisher<Event<String, MyError>, Never>`, this operator will return a `Publisher<MyError, Never>`.
205
205
206
206
**Note**: This operator only works on publishers that were materialized with the `materialize()` operator.
207
207
@@ -242,7 +242,7 @@ This section outlines some of the custom Combine publishers CombineExt provides
242
242
243
243
### AnyPublisher.create
244
244
245
-
A publisher which accepts a factory closure to which you ca dynamically push value or completion events.
245
+
A publisher which accepts a factory closure to which you can dynamically push value or completion events.
246
246
247
247
This lets you easily create custom publishers to wrap any non-publisher asynchronous work, while still respecting the downstream consumer's backpressure demand.
0 commit comments