From d134e983a2da11048412ef98d3ab263c66af03a1 Mon Sep 17 00:00:00 2001 From: Gustavo Rodrigues Date: Fri, 18 Dec 2015 13:02:52 -0200 Subject: [PATCH] fix wrong property in example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d88277..88a967d 100644 --- a/README.md +++ b/README.md @@ -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) }) ```