From 84ee1d66583288086f0b68c9b1703af1894f1b96 Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Thu, 14 Jun 2018 19:06:01 -0400 Subject: [PATCH] storage/memorybysubnet: fix mispellings --- storage/memorybysubnet/peer_store.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/storage/memorybysubnet/peer_store.go b/storage/memorybysubnet/peer_store.go index 206074e..cda08ef 100644 --- a/storage/memorybysubnet/peer_store.go +++ b/storage/memorybysubnet/peer_store.go @@ -520,7 +520,7 @@ func (ps *peerStore) AnnouncePeers(ih bittorrent.InfoHash, seeder bool, numWant // Append the rest of the leechers. if numWant > 0 { for subnet := range shard.swarms[ih].leechers { - // Already appended from this subnet explictly first. + // Already appended from this subnet explicitly first. if subnet == preferredSubnet { continue } @@ -568,7 +568,7 @@ func (ps *peerStore) AnnouncePeers(ih bittorrent.InfoHash, seeder bool, numWant // Append as the rest of the seeders. if numWant > 0 { for subnet := range shard.swarms[ih].seeders { - // Already appended from this subnet explictly first. + // Already appended from this subnet explicitly first. if subnet == preferredSubnet { continue } @@ -587,7 +587,7 @@ func (ps *peerStore) AnnouncePeers(ih bittorrent.InfoHash, seeder bool, numWant // Append the rest of the leechers. if numWant > 0 { for subnet := range shard.swarms[ih].leechers { - // Already appended from this subnet explictly first. + // Already appended from this subnet explicitly first. if subnet == preferredSubnet { continue }