From 8a5c81349ead2dc3208ba09517f7ee9f6866a7db Mon Sep 17 00:00:00 2001
From: Guillaume Ballet <gballet@gmail.com>
Date: Thu, 23 Jan 2020 16:08:06 +0100
Subject: [PATCH] eth: fix comment typo in handler.go (#20575)

---
 eth/handler.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eth/handler.go b/eth/handler.go
index e18fa6124..ae2b764cf 100644
--- a/eth/handler.go
+++ b/eth/handler.go
@@ -749,8 +749,8 @@ func (pm *ProtocolManager) handleMsg(p *peer) error {
 	return nil
 }
 
-// BroadcastBlock will either propagate a block to a subset of it's peers, or
-// will only announce it's availability (depending what's requested).
+// BroadcastBlock will either propagate a block to a subset of its peers, or
+// will only announce its availability (depending what's requested).
 func (pm *ProtocolManager) BroadcastBlock(block *types.Block, propagate bool) {
 	hash := block.Hash()
 	peers := pm.peers.PeersWithoutBlock(hash)
-- 
GitLab