From 0ec12dbc5fda2c2fbb668d9014299f0abefb3cd2 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Fri, 1 Sep 2017 02:37:22 -0400 Subject: [PATCH] Update README json examples. (#12) This commit fixes the JSON examples in the README. There was a missing `]` in the example input, a missing IP range in the reflected output, and a few trailing `,` that shouldn't have been there. --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 94f4fb8..2694687 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,8 @@ With the credentials, you can update the TXT response in the service to match th "allowfrom": [ "192.168.100.1/24", "1.2.3.4/32", - "2002:c0a8:2a00::0/40", + "2002:c0a8:2a00::0/40" + ] } ``` @@ -58,7 +59,8 @@ With the credentials, you can update the TXT response in the service to match th { "allowfrom": [ "192.168.100.1/24", - "1.2.3.4/32" + "1.2.3.4/32", + "2002:c0a8:2a00::0/40" ], "fulldomain": "8e5700ea-a4bf-41c7-8a77-e990661dcc6a.auth.acme-dns.io", "password": "htB9mR9DYgcu9bX_afHF62erXaH2TS7bg9KW3F7Z", @@ -83,7 +85,7 @@ The method allows you to update the TXT answer contents of your unique subdomain ```json { "subdomain": "8e5700ea-a4bf-41c7-8a77-e990661dcc6a", - "txt": "___validation_token_recieved_from_the_ca___", + "txt": "___validation_token_recieved_from_the_ca___" } ``` @@ -92,7 +94,7 @@ The method allows you to update the TXT answer contents of your unique subdomain ```Status: 200 OK``` ```json { - "txt": "___validation_token_recieved_from_the_ca___", + "txt": "___validation_token_recieved_from_the_ca___" } ```