diff --git a/examples/PeerDiscovery.js b/examples/PeerDiscovery.js index 6440718..2662698 100644 --- a/examples/PeerDiscovery.js +++ b/examples/PeerDiscovery.js @@ -5,7 +5,7 @@ peerman.discoverPeers(function(err, peers) { // we can use this array of peers to add to the manager // but let's limit it to 6 connections for this example var p = 0; - do { peerman.addPeer(peers[p]); p++; } while (p <= 6); + do { peerman.addPeer(peers[p]); p++; } while (p < 6); // then we can start the manager peerman.start(); });