From a279b2dd246782268545598e396765d13a3efc58 Mon Sep 17 00:00:00 2001 From: Steve Nester Date: Fri, 4 Oct 2019 17:11:33 -0400 Subject: [PATCH] "is" to "are" (#9564) The subject is of the form X and Y, therefore "are" is the correct verb. --- get-started/part2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-started/part2.md b/get-started/part2.md index 1203ab1140..6d8ce43ee3 100644 --- a/get-started/part2.md +++ b/get-started/part2.md @@ -90,7 +90,7 @@ This `Dockerfile` refers to a couple of files we haven't created yet, namely Create two more files, `requirements.txt` and `app.py`, and put them in the same folder with the `Dockerfile`. This completes our app, which as you can see is quite simple. When the above `Dockerfile` is built into an image, `app.py` and -`requirements.txt` is present because of that `Dockerfile`'s `COPY` command, +`requirements.txt` are present because of that `Dockerfile`'s `COPY` command, and the output from `app.py` is accessible over HTTP thanks to the `EXPOSE` command.