From 3302345ec8459bc7ea7db9536b9993849244c396 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Mon, 31 Oct 2022 17:39:22 -0400 Subject: [PATCH] fix typos --- p2p/peer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/peer.go b/p2p/peer.go index 1ab75f92c..d7f3d6a93 100644 --- a/p2p/peer.go +++ b/p2p/peer.go @@ -285,7 +285,7 @@ func (p *peer) SendEnvelope(e Envelope) bool { // Send msg bytes to the channel identified by chID byte. Returns false if the // send queue is full after timeout, specified by MConnection. -// SendEnvelope replaces TrySend which will be deprecated in a future release. +// SendEnvelope replaces Send which will be deprecated in a future release. func (p *peer) Send(chID byte, msgBytes []byte) bool { if !p.IsRunning() { return false