From 531c9f1086d22eb85a142114d20dcede2fd0bd4c Mon Sep 17 00:00:00 2001 From: Prashanth Chandra Date: Mon, 5 Dec 2016 13:52:26 +0800 Subject: [PATCH] Fix typo in README example (#42) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6d5f6a9..cc47f52 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ var PeerId = require('peer-id') var bs58 = require('bs58') PeerId.create({ bits: 1024 }, (err, id) => { - console.log(JSON.stringify(id.toJSON(), null, 2) + console.log(JSON.stringify(id.toJSON(), null, 2)) }) ```