From fe3ca2479a148c1925b80c822bebc0e82d20a91a Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Fri, 15 Jul 2022 12:00:26 -0400 Subject: [PATCH] [#2494] correct JSON syntax in some configuration examples --- doc/sphinx/arm/dhcp6-srv.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/sphinx/arm/dhcp6-srv.rst b/doc/sphinx/arm/dhcp6-srv.rst index 1009a6ee2d..9df20e9f8d 100644 --- a/doc/sphinx/arm/dhcp6-srv.rst +++ b/doc/sphinx/arm/dhcp6-srv.rst @@ -3875,7 +3875,7 @@ configuration: "reservations": [ { "duid": "01:02:03:04:05:0A:0B:0C:0D:0E", - "ip-addresses": [ "2001:db8:1::100" ] + "ip-addresses": [ "2001:db8:1::100" ], "hostname": "alice-laptop" } ] @@ -3902,7 +3902,7 @@ different clients with different domain names: "reservations": [ { "duid": "01:02:03:04:05:0A:0B:0C:0D:0E", - "ip-addresses": [ "2001:db8:1::100" ] + "ip-addresses": [ "2001:db8:1::100" ], "hostname": "mark-desktop.example.org." } ] -- GitLab