From da50b5192e881fcbb1c6488e7a9948e6a064c11a Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Sun, 23 Aug 2020 19:26:17 -0400 Subject: [PATCH] Make JSON example use valid JSON (#804) --- content/en/client/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/client/intro.md b/content/en/client/intro.md index 581aa185..8060da79 100644 --- a/content/en/client/intro.md +++ b/content/en/client/intro.md @@ -69,7 +69,7 @@ Similar to sending form data, but with an additional header to specify that the ```bash curl -X POST \ -H 'Content-Type: application/json' \ - -d '{"parameter": "value}' \ + -d '{"parameter": "value"}' \ https://mastodon.example/endpoint ```