diff --git a/src/docs/discord-verification/index.md b/src/docs/discord-verification/index.md index 2427a150..f78aac76 100644 --- a/src/docs/discord-verification/index.md +++ b/src/docs/discord-verification/index.md @@ -31,7 +31,7 @@ Create a JSON file inside the `domains/` directory called `domains/_discord.exam "email": "email@address" }, "record": { - "TXT": "discord-verification-string" + "TXT": ["discord-verification-string"] } } ``` diff --git a/src/docs/domain-structure/index.md b/src/docs/domain-structure/index.md index 81549967..997b8913 100644 --- a/src/docs/domain-structure/index.md +++ b/src/docs/domain-structure/index.md @@ -137,7 +137,7 @@ Below are some examples for the given record types: ```json { "record": { - "TXT": "Hello World!" + "TXT": ["Hello World!"] } } ``` diff --git a/src/docs/github-pages-verification/index.md b/src/docs/github-pages-verification/index.md index 688a516f..7dbd14eb 100644 --- a/src/docs/github-pages-verification/index.md +++ b/src/docs/github-pages-verification/index.md @@ -33,7 +33,7 @@ Create a JSON file inside the `domains/` directory called `domains/hostname.json "email": "" }, "record": { - "TXT": "" + "TXT": [""] } } ``` diff --git a/src/docs/vercel/index.md b/src/docs/vercel/index.md index a4b631dd..63173b3e 100644 --- a/src/docs/vercel/index.md +++ b/src/docs/vercel/index.md @@ -20,7 +20,7 @@ When connecting the domain, you will be greeted with a TXT verification string. "discord": "insert-discord-user-ID-here" }, "record": { - "TXT": "insert-TXT-string-you-got-from-vercel-here" + "TXT": ["insert-TXT-string-you-got-from-vercel-here"] } } ```