From 211cee585a036f83267c2a4da68c339c3ee826ab Mon Sep 17 00:00:00 2001 From: Kid <44045911+kidonng@users.noreply.github.com> Date: Sun, 19 Nov 2023 01:23:27 +0800 Subject: [PATCH] http/post/json.md: fix incorrectly matched quotes --- http/post/json.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/post/json.md b/http/post/json.md index 674b752424..675c032baf 100644 --- a/http/post/json.md +++ b/http/post/json.md @@ -31,7 +31,7 @@ any way merge the JSON object as per JSON. Send JSON from a file and concatenate a string to the end: - curl --json @json.txt --json ", "end": "true"}' https://example.com/ + curl --json @json.txt --json ', "end": "true"}' https://example.com/ ## Crafting JSON to send