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"