fix wrong property in example

This commit is contained in:
Gustavo Rodrigues 2015-12-18 13:02:52 -02:00
parent 774ae20e0a
commit d134e983a2

View File

@ -102,7 +102,7 @@ client.on('scrape', function (data) {
console.log('got a scrape response from tracker: ' + data.announce) console.log('got a scrape response from tracker: ' + data.announce)
console.log('number of seeders in the swarm: ' + data.complete) console.log('number of seeders in the swarm: ' + data.complete)
console.log('number of leechers in the swarm: ' + data.incomplete) 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)
}) })
``` ```