fix example

This commit is contained in:
Gordon Hall 2014-04-19 16:46:00 -04:00
parent f877b3e563
commit 8b17591661
1 changed files with 1 additions and 1 deletions

View File

@ -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();
});