Merge pull request #102 from qgustavor/patch-1

fix wrong property in example
This commit is contained in:
Feross Aboukhadijeh 2015-12-28 19:47:57 +01:00
commit 3efb8d0837

View File

@ -102,7 +102,7 @@ client.on('scrape', function (data) {
console.log('got a scrape response from tracker: ' + data.announce)
console.log('number of seeders in the swarm: ' + data.complete)
console.log('number of leechers in the swarm: ' + data.incomplete)
console.log('number of total downloads of this torrent: ' + data.incomplete)
console.log('number of total downloads of this torrent: ' + data.downloaded)
})
```