diff --git a/src/recv_future.rs b/src/recv_future.rs index 13de2da9..8f48cb0f 100644 --- a/src/recv_future.rs +++ b/src/recv_future.rs @@ -56,8 +56,6 @@ impl Future for ReceiveFuture { /// /// This type only exists because the variants of an enum are public and we would leak /// implementation details like the variant names into the public API. -/// -/// This future is the counterpart to [`Sending`](crate::send_future::Sending). enum Receiving { New(Receiver), WaitingToReceive(Waiting), diff --git a/src/send_future.rs b/src/send_future.rs index 3199c9fc..eea5d0ca 100644 --- a/src/send_future.rs +++ b/src/send_future.rs @@ -163,8 +163,6 @@ impl SendFuture { } /// The core state machine around sending a message to an actor's mailbox. -/// -/// This future is the counterpart to [`Receiving`](crate::recv_future::Receiving). enum Sending { New { msg: SentMessage,