From 68ee42ee31665817050ca4cf37720ddb505e650e Mon Sep 17 00:00:00 2001 From: David Dias Date: Wed, 24 May 2017 17:44:01 -0400 Subject: [PATCH] fix: linting --- examples/basics/index-es6.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/basics/index-es6.js b/examples/basics/index-es6.js index f8c166336f..4a1bbd6946 100644 --- a/examples/basics/index-es6.js +++ b/examples/basics/index-es6.js @@ -39,7 +39,7 @@ node.version() * Initialize the repo for this node */ .then(() => { - // we need to promisify node.init to return a promise + // we need to promisify node.init to return a promise return promisify(node.init)({ emptyRepo: true, bits: 2048 }) }) @@ -47,11 +47,11 @@ node.version() * Take the node online (bitswap, network and so on) */ .then(() => { - // we need to promisify node.start to return a promise + // we need to promisify node.start to return a promise return promisify(node.start)() }) - /* + /* * Add a file to IPFS - Complete Files API on: * https://github.com/ipfs/interface-ipfs-core/tree/master/API/files */