Skip to content

Commit b0022ea

Browse files
authored
Fix a grammar issue (docker#13212)
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
1 parent 425e845 commit b0022ea

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

language/java/run-containers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $ curl --request GET \
3333
curl: (7) Failed to connect to localhost port 8080: Connection refused
3434
```
3535

36-
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.
36+
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.
3737

3838
To stop the container, press `ctrl-c`. This will return you to the terminal prompt.
3939

language/nodejs/run-containers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ $ curl --request POST \
3838
curl: (7) Failed to connect to localhost port 8000: Connection refused
3939
```
4040

41-
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.
41+
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.
4242

4343
To stop the container, press ctrl-c. This will return you to the terminal prompt.
4444

0 commit comments

Comments
 (0)