From 3119dc30f91421b5cfc3ae6663d0b81fca4dd32e Mon Sep 17 00:00:00 2001 From: manxiaqu <1847234666@qq.com> Date: Thu, 23 Aug 2018 16:41:54 +0800 Subject: [PATCH] p2p: fix comment typo --- p2p/dial.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/dial.go b/p2p/dial.go index d8feceb9f3..4baca7d931 100644 --- a/p2p/dial.go +++ b/p2p/dial.go @@ -146,7 +146,7 @@ func newDialState(static []*discover.Node, bootnodes []*discover.Node, ntab disc } func (s *dialstate) addStatic(n *discover.Node) { - // This overwites the task instead of updating an existing + // This overwrites the task instead of updating an existing // entry, giving users the opportunity to force a resolve operation. s.static[n.ID] = &dialTask{flags: staticDialedConn, dest: n} }