From 73652a99202b0979e9a73788b01b0ebfc34047f5 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 19 Feb 2018 15:07:22 +0100 Subject: [PATCH] p2p: fix typo --- p2p/dial.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/dial.go b/p2p/dial.go index 4c8d39acdc..d8feceb9f3 100644 --- a/p2p/dial.go +++ b/p2p/dial.go @@ -155,7 +155,7 @@ func (s *dialstate) removeStatic(n *discover.Node) { // This removes a task so future attempts to connect will not be made. delete(s.static, n.ID) // This removes a previous dial timestamp so that application - // can force a server to reconnect with chosen peer immediatly. + // can force a server to reconnect with chosen peer immediately. s.hist.remove(n.ID) }