From eddec7d2e4c7bae1da94151fb4868fb85e3cb50d Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Mon, 13 Aug 2018 17:10:40 +0200 Subject: [PATCH] docs: fix example in README (#233) The JSON in the example was missing some commas. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1b056544..25e31e96 100644 --- a/README.md +++ b/README.md @@ -149,11 +149,11 @@ class Node extends libp2p { config: { // The config object is the part of the config that can go into a file, config.json. peerDiscovery: { mdns: { // mdns options - interval: 1000 // ms + interval: 1000, // ms enabled: true }, webrtcStar: { // webrtc-star options - interval: 1000 // ms + interval: 1000, // ms enabled: false } // .. other discovery module options.