File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ pub trait SinkExt<Item>: Sink<Item> {
220
220
/// by the sink.
221
221
///
222
222
/// Unlike `send`, the returned future does not flush the sink.
223
- /// It is the responsibility of the caller to ensure all pending items
223
+ /// It is the caller's responsibility to ensure all pending items
224
224
/// are processed, which can be done via `flush` or `close`.
225
225
fn feed ( & mut self , item : Item ) -> Feed < ' _ , Self , Item >
226
226
where Self : Unpin ,
@@ -259,7 +259,7 @@ pub trait SinkExt<Item>: Sink<Item> {
259
259
///
260
260
/// Unlike `send_all`, the returned future does not fully flush the sink
261
261
/// before completion.
262
- /// It is the responsibility of the caller to ensure all pending items
262
+ /// It is the caller's responsibility to ensure all pending items
263
263
/// are processed, which can be done via `flush` or `close`.
264
264
fn feed_all < ' a , St > (
265
265
& ' a mut self ,
@@ -303,7 +303,7 @@ pub trait SinkExt<Item>: Sink<Item> {
303
303
{
304
304
CompatSink :: new ( self )
305
305
}
306
-
306
+
307
307
/// A convenience method for calling [`Sink::poll_ready`] on [`Unpin`]
308
308
/// sink types.
309
309
fn poll_ready_unpin ( & mut self , cx : & mut Context < ' _ > ) -> Poll < Result < ( ) , Self :: Error > >
You can’t perform that action at this time.
0 commit comments