From 9dd353952bb78ee1977e1a926e7e4a0b48763769 Mon Sep 17 00:00:00 2001 From: Masahiro Aoki Date: Thu, 9 Sep 2021 13:54:54 +0900 Subject: [PATCH] Update run-containers.md --- language/nodejs/run-containers.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/language/nodejs/run-containers.md b/language/nodejs/run-containers.md index 64ad1fe8ca..d4bf853907 100644 --- a/language/nodejs/run-containers.md +++ b/language/nodejs/run-containers.md @@ -32,9 +32,7 @@ Let’s open a new terminal then make a GET request to the server using the curl $ curl --request POST \ --url http://localhost:8000/test \ --header 'content-type: application/json' \ - --data '{ - "msg": "testing" -}' + --data '{"msg": "testing"}' curl: (7) Failed to connect to localhost port 8000: Connection refused ```