From 43f96a4c8bb943a03a6b74f1999884cfbc0668a3 Mon Sep 17 00:00:00 2001 From: Zach Borboa Date: Tue, 27 Oct 2020 19:05:58 -0700 Subject: [PATCH] Clean up --- examples/post_json.php | 2 +- examples/post_json_array_response.php | 2 +- examples/post_json_manual_encoding.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/post_json.php b/examples/post_json.php index 5d86c37..c336ab9 100644 --- a/examples/post_json.php +++ b/examples/post_json.php @@ -5,7 +5,7 @@ use Curl\Curl; // curl \ // -X POST \ -// -H 'Content-Type:application/json' \ +// -H 'Content-Type: application/json' \ // -d '{"id":"1","content":"Hello world!","date":"2015-06-30 19:42:21"}' \ // "https://httpbin.org/post" diff --git a/examples/post_json_array_response.php b/examples/post_json_array_response.php index 37b6f51..3e7e499 100644 --- a/examples/post_json_array_response.php +++ b/examples/post_json_array_response.php @@ -5,7 +5,7 @@ use Curl\Curl; // curl \ // -X POST \ -// -H 'Content-Type:application/json' \ +// -H 'Content-Type: application/json' \ // -d '{"id":"1","content":"Hello world!","date":"2015-06-30 19:42:21"}' \ // "https://httpbin.org/post" diff --git a/examples/post_json_manual_encoding.php b/examples/post_json_manual_encoding.php index e886b90..acdf0ff 100644 --- a/examples/post_json_manual_encoding.php +++ b/examples/post_json_manual_encoding.php @@ -5,7 +5,7 @@ use Curl\Curl; // curl \ // -X POST \ -// -H 'Content-Type:application/json' \ +// -H 'Content-Type: application/json' \ // -d '{"id":"1","content":"Hello world!","date":"2015-06-30 19:42:21"}' \ // "https://httpbin.org/post"