Skip to content

Commit 137dec0

Browse files
committed
fix GenericPuller doc comments
1 parent 0da668e commit 137dec0

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

communication/src/allocator/generic.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ impl<T: Data> Push<Message<T>> for GenericPusher<T> {
5454
/// Enumerates known implementors of `Allocate::Puller`.
5555
/// Passes trait method calls on to members.
5656
pub enum GenericPuller<T: Data> {
57-
/// Intra-thread pusher
57+
/// Intra-thread puller
5858
Thread(<Thread as Allocate>::Puller<T>),
59-
/// Inter-thread, intra-process pusher
59+
/// Inter-thread, intra-process puller
6060
Process(<Process as Allocate>::Puller<T>),
61-
/// Inter-thread, intra-process serializing pusher
61+
/// Inter-thread, intra-process serializing puller
6262
ProcessBinary(<ProcessAllocator as Allocate>::Puller<T>),
63-
/// Inter-process pusher
63+
/// Inter-process puller
6464
ZeroCopy(<TcpAllocator<Process> as Allocate>::Puller<T>),
6565
}
6666

0 commit comments

Comments
 (0)