From b0022ea68ee2a57badbea0c38ebd34ab658bb921 Mon Sep 17 00:00:00 2001 From: Usha Mandya <47779042+usha-mandya@users.noreply.github.com> Date: Wed, 21 Jul 2021 16:16:18 +0100 Subject: [PATCH] Fix a grammar issue (#13212) Signed-off-by: Usha Mandya --- language/java/run-containers.md | 2 +- language/nodejs/run-containers.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/language/java/run-containers.md b/language/java/run-containers.md index ed019ec2e0..f102375c66 100644 --- a/language/java/run-containers.md +++ b/language/java/run-containers.md @@ -33,7 +33,7 @@ $ curl --request GET \ curl: (7) Failed to connect to localhost port 8080: Connection refused ``` -As you can see, our `curl` command failed because the connection to our server was refused. This means, we were not able to connect to the localhost on port 8080. This is expected because our container is running in isolation which includes networking. Let’s stop the container and restart with port 8080 published on our local network. +As you can see, our `curl` command failed because the connection to our server was refused. It means that we were not able to connect to the localhost on port 8080. This is expected because our container is running in isolation which includes networking. Let’s stop the container and restart with port 8080 published on our local network. To stop the container, press `ctrl-c`. This will return you to the terminal prompt. diff --git a/language/nodejs/run-containers.md b/language/nodejs/run-containers.md index d642f5f776..3f6a352930 100644 --- a/language/nodejs/run-containers.md +++ b/language/nodejs/run-containers.md @@ -38,7 +38,7 @@ $ curl --request POST \ curl: (7) Failed to connect to localhost port 8000: Connection refused ``` -Our curl command failed because the connection to our server was refused. Meaning that we were not able to connect to localhost on port 8000. This is expected because our container is running in isolation which includes networking. Let’s stop the container and restart with port 8000 published on our local network. +Our curl command failed because the connection to our server was refused. It means that we were not able to connect to localhost on port 8000. This is expected because our container is running in isolation which includes networking. Let’s stop the container and restart with port 8000 published on our local network. To stop the container, press ctrl-c. This will return you to the terminal prompt.