Skip to content

Commit 776933a

Browse files
authored
Fix minor typos and formatting inconsistencies in testing_networks documentation
1 parent 8f9e8a6 commit 776933a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_docs/student/testing_networks.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: Testing Networked Applications Locally
99
We are currently hosting the docker images that will be used for grading on the
1010
[Docker Hub](https://hub.docker.com/u/submitty/).
1111

12-
You can can "pull" the most recent submitty images using the commands:
12+
You can "pull" the most recent submitty images using the commands:
1313
```
1414
docker pull submitty/python:2.7
1515
docker pull submitty/python:3.6
@@ -34,7 +34,7 @@ docker create -i -t -v SOURCE_CODE_DIRECTORY:SOURCE_CODE_DIRECTORY -w SOURCE_COD
3434
``-i`` boots the container in interactive mode, allowing submitty to pipe standard
3535
input to the containers.
3636

37-
``-t`` Allocates a pseudo-TTY so that you can interact with your container.
37+
``-t`` allocates a pseudo-TTY so that you can interact with your container.
3838

3939
``-v`` mounts a directory on the host machine so that output persists after the
4040
docker exits. ``SOURCE_CODE_DIRECTORY:SOURCE_CODE_DIRECTORY`` specifies first
@@ -61,7 +61,7 @@ Once you have created a few containers, you can create a network with this comma
6161
```
6262
docker network create --driver bridge NETWORK_NAME
6363
```
64-
Where you can specify your own network_name.
64+
You can specify your own network_name.
6565

6666
Then, you can connect your containers to the network as follows:
6767
```

0 commit comments

Comments
 (0)