From 00ddc1b8cd8197a25f9b6a5a119c5a38a91f20ec Mon Sep 17 00:00:00 2001 From: rany Date: Sun, 31 Oct 2021 13:27:21 +0200 Subject: [PATCH] Fix invalid JSON in README.md --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 070e0fd..cf8d200 100644 --- a/README.md +++ b/README.md @@ -26,13 +26,13 @@ Here's a example that you may modify to your needs. ```json { - "route": [ + "route": { "fdaa:bbcc:ddee::/48": { "description": "My home network", - "device": [ + "device": { "fdaa:bbcc:ddee::1": { "type": "router", - "description": "My custom router running BIRD", + "description": "My custom router running BIRD" }, "fdaa:bbcc:ddee::5": { "description": "Electronic mail endpoint", @@ -58,15 +58,15 @@ Here's a example that you may modify to your needs. } ] } - ] + } }, "fdcc:ba11:b00b::/48": { - "device": [ + "device": { "fdcc:ba11:b00b::1": { - "type": "router", + "type": "router" } - ] + } } - ] + } } ```