1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-15 01:24:29 +02:00

fix examples

This commit is contained in:
Kelly Brazil
2021-08-26 10:31:51 -07:00
parent 1a9fd2139d
commit 9c1ad92fed

View File

@ -35,11 +35,11 @@ Bad:
``` ```
{ {
"Interface 1": [ "Interface 1": [
192.168.1.1, "192.168.1.1",
172.16.1.1 "172.16.1.1"
], ],
"Wifi Interface 1": [ "Wifi Interface 1": [
10.1.1.1 "10.1.1.1"
] ]
} }
``` ```
@ -49,14 +49,14 @@ Good:
{ {
"interface": "Interface 1", "interface": "Interface 1",
"ip_addresses": [ "ip_addresses": [
192.168.1.1, "192.168.1.1",
172.16.1.1 "172.16.1.1"
] ]
}, },
{ {
"interface": "Wifi Interface 1", "interface": "Wifi Interface 1",
"ip_addresses": [ "ip_addresses": [
10.1.1.1 "10.1.1.1"
] ]
} }
] ]