diff options
author | Guillaume Ballet <gballet@gmail.com> | 2019-04-18 15:02:11 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2019-04-18 15:02:11 +0800 |
commit | 29bba5d0b2102f405122e2ab8462f262e285cefb (patch) | |
tree | 17ec4bf8d95860680ad0900ad2f9fd539e5542ae | |
parent | 78ec90717aaa34c6ac981e791ca7fb04077cca33 (diff) | |
download | go-tangerine-29bba5d0b2102f405122e2ab8462f262e285cefb.tar go-tangerine-29bba5d0b2102f405122e2ab8462f262e285cefb.tar.gz go-tangerine-29bba5d0b2102f405122e2ab8462f262e285cefb.tar.bz2 go-tangerine-29bba5d0b2102f405122e2ab8462f262e285cefb.tar.lz go-tangerine-29bba5d0b2102f405122e2ab8462f262e285cefb.tar.xz go-tangerine-29bba5d0b2102f405122e2ab8462f262e285cefb.tar.zst go-tangerine-29bba5d0b2102f405122e2ab8462f262e285cefb.zip |
p2p: fix typo in dialstate comment (#19476)
-rw-r--r-- | p2p/dial.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p2p/dial.go b/p2p/dial.go index 075a0f936..936887a1a 100644 --- a/p2p/dial.go +++ b/p2p/dial.go @@ -65,7 +65,7 @@ func (t TCPDialer) Dial(dest *enode.Node) (net.Conn, error) { } // dialstate schedules dials and discovery lookups. -// it get's a chance to compute new tasks on every iteration +// It gets a chance to compute new tasks on every iteration // of the main loop in Server.run. type dialstate struct { maxDynDials int |