Fix invalid JSON in README.md

This commit is contained in:
rany 2021-10-31 13:27:21 +02:00
parent ca99a5c11e
commit 00ddc1b8cd
1 changed files with 8 additions and 8 deletions

View File

@ -26,13 +26,13 @@ Here's a example that you may modify to your needs.
```json ```json
{ {
"route": [ "route": {
"fdaa:bbcc:ddee::/48": { "fdaa:bbcc:ddee::/48": {
"description": "My home network", "description": "My home network",
"device": [ "device": {
"fdaa:bbcc:ddee::1": { "fdaa:bbcc:ddee::1": {
"type": "router", "type": "router",
"description": "My custom router running BIRD", "description": "My custom router running BIRD"
}, },
"fdaa:bbcc:ddee::5": { "fdaa:bbcc:ddee::5": {
"description": "Electronic mail endpoint", "description": "Electronic mail endpoint",
@ -58,15 +58,15 @@ Here's a example that you may modify to your needs.
} }
] ]
} }
] }
}, },
"fdcc:ba11:b00b::/48": { "fdcc:ba11:b00b::/48": {
"device": [ "device": {
"fdcc:ba11:b00b::1": { "fdcc:ba11:b00b::1": {
"type": "router", "type": "router"
} }
] }
} }
] }
} }
``` ```